mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Revert "lint fixes"
This reverts commit 08bc5188810c8c3df796ac510291b7f27a9316ff.
This commit is contained in:
parent
35524e0fa1
commit
07c0c947ad
@ -12,7 +12,15 @@
|
|||||||
<small>{{ $t('error.empty-transactionlist') }}</small>
|
<small>{{ $t('error.empty-transactionlist') }}</small>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-for="{ decay, id, typeId, balanceDate, amount, linkedUser, memo } in transactions"
|
v-for="{
|
||||||
|
decay,
|
||||||
|
id,
|
||||||
|
typeId,
|
||||||
|
balanceDate,
|
||||||
|
amount,
|
||||||
|
linkedUser,
|
||||||
|
memo,
|
||||||
|
} in transactions"
|
||||||
:key="id"
|
:key="id"
|
||||||
:style="typeId === 'DECAY' ? 'background-color:#f1e0ae3d' : ''"
|
:style="typeId === 'DECAY' ? 'background-color:#f1e0ae3d' : ''"
|
||||||
>
|
>
|
||||||
@ -52,11 +60,7 @@
|
|||||||
</b-col>
|
</b-col>
|
||||||
<b-col cols="7">
|
<b-col cols="7">
|
||||||
<div class="gdd-transaction-list-item-name">
|
<div class="gdd-transaction-list-item-name">
|
||||||
{{
|
{{ typeId !== 'DECAY' ? `${linkedUser.firstName} ${linkedUser.lastName}` : $t('decay.decay_since_last_transaction') }}
|
||||||
typeId !== 'DECAY'
|
|
||||||
? `${linkedUser.firstName} ${linkedUser.lastName}`
|
|
||||||
: $t('decay.decay_since_last_transaction')
|
|
||||||
}}
|
|
||||||
</div>
|
</div>
|
||||||
</b-col>
|
</b-col>
|
||||||
</b-row>
|
</b-row>
|
||||||
@ -78,8 +82,7 @@
|
|||||||
</b-col>
|
</b-col>
|
||||||
<b-col cols="7">
|
<b-col cols="7">
|
||||||
<div class="gdd-transaction-list-item-date">
|
<div class="gdd-transaction-list-item-date">
|
||||||
{{ $d(new Date(balanceDate), 'long') }}
|
{{ $d(new Date(balanceDate), 'long') }} {{ $i18n.locale === 'de' ? 'Uhr' : '' }}
|
||||||
{{ $i18n.locale === 'de' ? 'Uhr' : '' }}
|
|
||||||
</div>
|
</div>
|
||||||
</b-col>
|
</b-col>
|
||||||
</b-row>
|
</b-row>
|
||||||
@ -88,12 +91,7 @@
|
|||||||
<b-row v-if="decay && !decay.decayStartBlock">
|
<b-row v-if="decay && !decay.decayStartBlock">
|
||||||
<b-col cols="5">
|
<b-col cols="5">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<b-icon
|
<b-icon v-if="typeId != 'DECAY'" icon="droplet-half" height="15" class="mb-1" />
|
||||||
v-if="typeId != 'DECAY'"
|
|
||||||
icon="droplet-half"
|
|
||||||
height="15"
|
|
||||||
class="mb-1"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</b-col>
|
</b-col>
|
||||||
<b-col cols="7">
|
<b-col cols="7">
|
||||||
@ -105,12 +103,7 @@
|
|||||||
<b-row v-if="decay && decay.decayStartBlock">
|
<b-row v-if="decay && decay.decayStartBlock">
|
||||||
<b-col cols="5">
|
<b-col cols="5">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<b-icon
|
<b-icon v-if="typeId != 'DECAY'" icon="droplet-half" height="15" class="mb-1" />
|
||||||
v-if="typeId != 'DECAY'"
|
|
||||||
icon="droplet-half"
|
|
||||||
height="15"
|
|
||||||
class="mb-1"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</b-col>
|
</b-col>
|
||||||
<b-col cols="7">
|
<b-col cols="7">
|
||||||
@ -127,7 +120,12 @@
|
|||||||
|
|
||||||
<b-collapse v-if="typeId != 'DECAY' && decay" class="pb-4" :id="'decay-' + id">
|
<b-collapse v-if="typeId != 'DECAY' && decay" class="pb-4" :id="'decay-' + id">
|
||||||
<div style="border: 0px; background-color: #f1f1f1" class="p-2 pb-4 mb-4">
|
<div style="border: 0px; background-color: #f1f1f1" class="p-2 pb-4 mb-4">
|
||||||
<decay-information v-if="decay" decaytyp="new" :decay="decay" :type="typeId" />
|
<decay-information
|
||||||
|
v-if="decay"
|
||||||
|
decaytyp="new"
|
||||||
|
:decay="decay"
|
||||||
|
:type="typeId"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</b-collapse>
|
</b-collapse>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user