memo text in transaction gdd list

This commit is contained in:
ogerly 2022-12-21 09:40:49 +01:00
parent 38348764b9
commit 6fbac2bbe4
3 changed files with 10 additions and 7 deletions

View File

@ -6,8 +6,9 @@
</b-col>
<b-col>
<div class="font-weight-bold">{{ linkedUser.firstName }} {{ linkedUser.lastName }}</div>
<div class="small">{{ this.$d(new Date(balanceDate), 'short') }}</div>
<div class="small">{{ this.$d(new Date(balanceDate), 'time') }}</div>
<span class="small">{{ this.$d(new Date(balanceDate), 'short') }}</span>
<span class="ml-4 small">{{ this.$d(new Date(balanceDate), 'time') }}</span>
<div>{{ memo }}</div>
</b-col>
<b-col cols="3">
<div class="small">{{ $t('decay.types.receive') }}</div>

View File

@ -15,8 +15,9 @@
:linkId="linkId"
/>
</div>
<div class="small">{{ this.$d(new Date(balanceDate), 'short') }}</div>
<div class="small">{{ this.$d(new Date(balanceDate), 'time') }}</div>
<span class="small">{{ this.$d(new Date(balanceDate), 'short') }}</span>
<span class="ml-4 small">{{ this.$d(new Date(balanceDate), 'time') }}</span>
<div>{{ memo }}</div>
</b-col>
<b-col cols="3">
<div class="small">

View File

@ -14,8 +14,9 @@
:linkId="linkId"
/>
</div>
<div class="small">{{ this.$d(new Date(balanceDate), 'short') }}</div>
<div class="small">{{ this.$d(new Date(balanceDate), 'time') }}</div>
<span class="small">{{ this.$d(new Date(balanceDate), 'short') }}</span>
<span class="ml-4 small">{{ this.$d(new Date(balanceDate), 'time') }}</span>
<div>{{ memo }}</div>
</b-col>
<b-col cols="3">
<div class="small">
@ -35,7 +36,7 @@
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
</b-row>
<b-collapse class="pb-4 pt-5" v-model="visible">
<decay-information :typeId="typeId" :decay="decay" :amount="amount" />
<decay-information :typeId="typeId" :decay="decay" :amount="amount" :memo="memo" />
</b-collapse>
</div>
</template>