From 6f082726f8f09adcc5c918b096941b72adc681ed Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 20 Jan 2022 13:22:44 +0100 Subject: [PATCH] change fields key data formatter --- admin/src/components/CreationTransactionListFormular.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/src/components/CreationTransactionListFormular.vue b/admin/src/components/CreationTransactionListFormular.vue index 8ea49eb45..627647534 100644 --- a/admin/src/components/CreationTransactionListFormular.vue +++ b/admin/src/components/CreationTransactionListFormular.vue @@ -18,7 +18,7 @@ export default { key: 'date', label: this.$t('transactionlist.date'), formatter: (value, key, item) => { - return this.$moment(value).format(this.$t('transactionlist.formatter')) + return this.$d(new Date(value)) }, }, {