mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix bug, change statment from transaction infbox
This commit is contained in:
parent
4d2eb5b216
commit
55b020e3ac
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -55,11 +55,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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user