Merge pull request #712 from gradido/708-Last-Item-Transactionlist-AccountOverview-Show-Not-Details

fix bug, change statment from transaction infbox
This commit is contained in:
Alexander Friedland 2021-08-11 14:41:35 +02:00 committed by GitHub
commit 9cb03befa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 6 deletions

View File

@ -36,7 +36,8 @@
"received":"empfangen",
"sent":"gesendet",
"created":"geschöpft",
"fromCommunity":"Aus der Community"
"fromCommunity":"Aus der Community",
"toCommunity":"An die Community"
},
"form": {
"cancel": "Abbrechen",

View File

@ -36,7 +36,8 @@
"received":"received",
"sent":"sent",
"created":"reated",
"fromCommunity":"From the community"
"fromCommunity":"From the community",
"toCommunity":"To the community"
},
"form": {
"cancel":"Cancel",

View File

@ -54,11 +54,19 @@
<!-- ROW End -->
<!-- Collaps Start -->
<b-collapse v-if="type != 'decay'" :id="'a' + date + ''">
<b-list-group v-if="type === 'creation'">
<b-list-group-item style="border: 0px">
<b-list-group>
<b-list-group-item style="border: 0px; background-color: #f1f1f1">
<div class="d-flex">
<div style="width: 40%" class="text-right pr-3 mr-2">{{ $t('decay.created') }}</div>
<div style="width: 60%">{{ $t('decay.fromCommunity') }}</div>
<div style="width: 40%" class="text-right pr-3 mr-2">
<div v-if="type === 'send'">{{ $t('decay.sent') }}</div>
<div v-if="type === 'creation'">{{ $t('decay.created') }}</div>
<div v-if="type === 'receive'">{{ $t('decay.received') }}</div>
</div>
<div style="width: 60%">
<div v-if="type === 'send'">{{ $t('decay.toCommunity') }}</div>
<div v-if="type === 'creation'">{{ $t('decay.fromCommunity') }}</div>
<div v-if="type === 'receive'">{{ $t('decay.fromCommunity') }}</div>
</div>
</div>
</b-list-group-item>
</b-list-group>