From 7213e2d1fc496f52b5ebaf93102476ecf0e1db83 Mon Sep 17 00:00:00 2001 From: Jon Date: Thu, 13 Mar 2025 16:12:13 +0100 Subject: [PATCH] revert: reverted issued field --- src/pages/InvoiceOut/InvoiceOutList.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index a6ec9923e..7316e772d 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -54,6 +54,14 @@ const columns = computed(() => [ name: 'id', }, }, + { + align: 'left', + name: 'issued', + label: t('invoiceOut.summary.issued'), + component: 'date', + format: (row) => toDate(row.issued), + columnField: { component: null }, + }, { align: 'left', name: 'ref',