add string GDD on creation amount

This commit is contained in:
ogerly 2022-01-19 17:45:41 +01:00
parent b4090f50ef
commit e1df3718c5

View File

@ -21,7 +21,13 @@ export default {
return this.$moment(value).format(this.$t('transactionlist.formatter')) return this.$moment(value).format(this.$t('transactionlist.formatter'))
}, },
}, },
{ key: 'balance', label: this.$t('transactionlist.amount') }, {
key: 'balance',
label: this.$t('transactionlist.amount'),
formatter: (value, key, item) => {
return `${value} GDD`
},
},
{ key: 'name', label: this.$t('transactionlist.community') }, { key: 'name', label: this.$t('transactionlist.community') },
{ key: 'memo', label: this.$t('transactionlist.memo') }, { key: 'memo', label: this.$t('transactionlist.memo') },
{ {