diff --git a/frontend/src/components/DecayInformations/DecayInformation-Decay.vue b/frontend/src/components/DecayInformations/DecayInformation-Decay.vue
new file mode 100644
index 000000000..0dc00a79a
--- /dev/null
+++ b/frontend/src/components/DecayInformations/DecayInformation-Decay.vue
@@ -0,0 +1,36 @@
+
+
+
+
diff --git a/frontend/src/components/DecayInformations/DecayInformation-Long.vue b/frontend/src/components/DecayInformations/DecayInformation-Long.vue
index f48a498e2..e0c3b7759 100644
--- a/frontend/src/components/DecayInformations/DecayInformation-Long.vue
+++ b/frontend/src/components/DecayInformations/DecayInformation-Long.vue
@@ -42,7 +42,7 @@
{{ $t('decay.decay') }}
- {{ $n(decay.decay, 'decimal') }}
+ − {{ $n(decay.decay * -1, 'decimal') }}
@@ -58,7 +58,7 @@
{{ $t('decay.received') }}
- {{ $n(amount, 'decimal') }}
+ − {{ $n(amount * -1, 'decimal') }}
{{ $n(amount, 'decimal') }}
@@ -68,7 +68,7 @@
{{ $t('decay.decay') }}
- {{ $n(decay.decay, 'decimal') }}
+ − {{ $n(decay.decay * -1, 'decimal') }}
@@ -78,7 +78,7 @@
- {{ $n(Number(amount) + Number(decay.decay), 'decimal') }}
+ − {{ $n(Number(amount * -1) + Number(decay.decay * -1), 'decimal') }}
{{ $n(Number(amount) + Number(decay.decay), 'decimal') }}
diff --git a/frontend/src/components/DecayInformations/DecayInformation-Short.vue b/frontend/src/components/DecayInformations/DecayInformation-Short.vue
index 2b3356cdf..20593ee8a 100644
--- a/frontend/src/components/DecayInformations/DecayInformation-Short.vue
+++ b/frontend/src/components/DecayInformations/DecayInformation-Short.vue
@@ -1,8 +1,6 @@
-
- {{ decay ? $n(decay.decay, 'decimal') : '' }}
-
+ − {{ decay ? $n(decay.decay * -1, 'decimal') : '' }}