pull origin

This commit is contained in:
ogerly 2022-03-06 18:57:26 +01:00
parent 132de9d00f
commit 7c37c345a1
3 changed files with 3 additions and 7 deletions

View File

@ -57,7 +57,7 @@
</b-col>
<b-col cols="6">
<div v-if="typeId === 'SEND'">
<b> {{ $n((Number(amount) + Number(decay.decay)) * -1, 'decimal') }}</b>
<b> {{ $n(Number(amount) + Number(decay.decay) * -1, 'decimal') }}</b>
</div>
<div v-if="typeId === 'RECEIVE'">
<b>{{ $n(Number(amount) + Number(decay.decay), 'decimal') }}</b>

View File

@ -78,7 +78,7 @@
</b-col>
<b-col cols="6">
<div v-if="typeId === 'SEND'">
<b> {{ $n(Number(amount * -1) + Number(decay.decay * -1), 'decimal') }}</b>
<b> {{ $n(Number(amount) + Number(decay.decay) * -1, 'decimal') }}</b>
</div>
<div v-if="typeId === 'RECEIVE'">
<b>{{ $n(Number(amount) + Number(decay.decay), 'decimal') }}</b>

View File

@ -31,11 +31,7 @@
</b-col>
<b-col cols="7">
<div class="gdd-transaction-list-item-name">
{{
typeId !== 'DECAY'
? linkedUser.firstName + ' ' + linkedUser.lastName
: $t('decay.decay_since_last_transaction')
}}
{{ linkedUser.firstName + ' ' + linkedUser.lastName }}
</div>
</b-col>
</b-row>