summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/number-diff.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/number-diff.vue b/src/client/components/number-diff.vue
index ba7e6964de..690f89dd59 100644
--- a/src/client/components/number-diff.vue
+++ b/src/client/components/number-diff.vue
@@ -1,6 +1,6 @@
<template>
<span class="ceaaebcd" :class="{ isPlus, isMinus, isZero }">
- <slot name="before"></slot>{{ isPlus ? '+' : isMinus ? '-' : '' }}{{ number(value) }}<slot name="after"></slot>
+ <slot name="before"></slot>{{ isPlus ? '+' : '' }}{{ number(value) }}<slot name="after"></slot>
</span>
</template>