change conflicts fixed

This commit is contained in:
ogerly 2022-02-08 15:06:26 +01:00
parent 55573ea2ce
commit 9b22b42457

View File

@ -31,7 +31,11 @@
>
<!-- Collaps Button -->
<div
v-if="(type !== 'decay' && decay) || firstTransaction"
v-if="
(type != 'decay' && decay) ||
firstTransaction ||
(!firstTransaction && decay === null)
"
class="text-right"
style="width: 95%; position: absolute"
>
@ -123,7 +127,11 @@
<!-- Collaps Start -->
<b-collapse
v-if="(type !== 'decay' && decay) || firstTransaction"
v-if="
(type != 'decay' && decay) ||
firstTransaction ||
(!firstTransaction && decay === null)
"
class="pb-4"
:id="'decay-' + transactionId"
>
@ -138,6 +146,10 @@
<div v-if="firstTransaction" class="mt-3 mb-3 text-center">
<b>{{ $t('decay.first_transaction') }}</b>
</div>
<div v-if="!firstTransaction && decay === null" class="mt-3 mb-3 text-center">
<b>{{ $t('decay.first_transaction') }}</b>
</div>
</div>
</b-collapse>