From 019b0304652ce454c86cd7bb7743dbf31e23c49c Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 8 Jul 2021 17:52:21 +0200 Subject: [PATCH] fix: Infinite Loop in Transaction List --- frontend/src/components/DecayInformation.vue | 74 +++++++++++--------- 1 file changed, 40 insertions(+), 34 deletions(-) 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 @@