diff --git a/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue b/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue index b6025e8a7..5886c69c5 100644 --- a/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue +++ b/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue @@ -32,8 +32,33 @@ - {{transactions}} - {{$n(balance, 'decimal')}}, {{ $n(decay, 'decimal') }}, {{ $n(amount, 'decimal') }} + + + + + aktueller Kontostand + {{$n(balance, 'decimal')}} + + + + Dein Betrag + - {{$n(amount, 'decimal')}} + + + + + Vergänglichkeit + - {{$n(decay, 'decimal')}} + + + + + + neuer Kontostand + ~ {{$n(balance - amount - decay, 'decimal')}} + + + {{ $t('form.cancel') }} @@ -59,6 +84,11 @@ export default { default: () => [], }, }, + data() { + return { + decay: this.transactions[0].balance, + } + }, }