diff --git a/frontend/src/components/DecayInformation.vue b/frontend/src/components/DecayInformation.vue index 75bda0a18..3b7a939c5 100644 --- a/frontend/src/components/DecayInformation.vue +++ b/frontend/src/components/DecayInformation.vue @@ -39,14 +39,20 @@
{{ $t('decay.since_introduction') }}
- {{ getDuration(decay.decay_end, decay.decay_start) }} - - {{ duration.years }} {{ $t('decay.year') }}, - {{ duration.months }} {{ $t('decay.months') }}, - {{ duration.days }} {{ $t('decay.days') }}, - {{ duration.hours }} {{ $t('decay.hours') }}, - {{ duration.minutes }} {{ $t('decay.minutes') }}, - {{ duration.seconds }} {{ $t('decay.seconds') }} + {{ getDuration }} + + {{ getDuration.years }} {{ $t('decay.year') }}, + + {{ getDuration.months }} {{ $t('decay.months') }}, + + {{ getDuration.days }} {{ $t('decay.days') }}, + {{ getDuration.hours }} {{ $t('decay.hours') }}, + + {{ getDuration.minutes }} {{ $t('decay.minutes') }}, + + + {{ getDuration.seconds }} {{ $t('decay.seconds') }} +
@@ -56,30 +62,30 @@