From e1df3718c57d300377228a54a97a070cbc83c28e Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 19 Jan 2022 17:45:41 +0100 Subject: [PATCH] add string GDD on creation amount --- admin/src/components/CreationTransactionListFormular.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/admin/src/components/CreationTransactionListFormular.vue b/admin/src/components/CreationTransactionListFormular.vue index 6f5864f7c..8ea49eb45 100644 --- a/admin/src/components/CreationTransactionListFormular.vue +++ b/admin/src/components/CreationTransactionListFormular.vue @@ -21,7 +21,13 @@ export default { 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: 'memo', label: this.$t('transactionlist.memo') }, {