diff --git a/frontend/src/components/DecayInformation.vue b/frontend/src/components/DecayInformation.vue
index 04a850040..2b9e38306 100644
--- a/frontend/src/components/DecayInformation.vue
+++ b/frontend/src/components/DecayInformation.vue
@@ -65,7 +65,7 @@
{{ $t('decay.decay') }}
- - {{ decay.balance }}
+ - {{ $n(decay.balance, 'decimal') }}
@@ -81,8 +81,8 @@
{{ $t('decay.received') }}
- - {{ balance }}
- + {{ balance }}
+ - {{ $n(balance, 'decimal') }}
+ + {{ $n(balance, 'decimal') }}
@@ -91,7 +91,7 @@
{{ $t('decay.decay') }}
- - {{ decay.balance }}
+ - {{ $n(decay.balance, 'decimal') }}
@@ -101,10 +101,10 @@
- - {{ parseInt(balance) + decay.balance }}
+ - {{ $n(parseInt(balance) + decay.balance, 'decimal') }}
- {{ parseInt(balance) - decay.balance }}
+ {{ $n(parseInt(balance) - decay.balance, 'decimal') }}