From 15c883ca732215591384411c195923037509421d Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 30 Apr 2026 11:40:16 +0700 Subject: [PATCH] fix: add created at column --- src/components/pages/finance/FinanceTable.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/pages/finance/FinanceTable.tsx b/src/components/pages/finance/FinanceTable.tsx index 7bf62aba..5173a618 100644 --- a/src/components/pages/finance/FinanceTable.tsx +++ b/src/components/pages/finance/FinanceTable.tsx @@ -586,10 +586,14 @@ const FinanceTable = () => { }, }, { - header: 'Tanggal', + header: 'Tanggal Pembayaran', accessorFn: (finance: Finance) => formatDate(finance.payment_date, 'DD MMM YYYY'), }, + { + header: 'Tanggal Dibuat', + accessorFn: (finance) => formatDate(finance.created_at, 'DD MMM YYYY'), + }, { header: 'Metode Pembayaran', accessorKey: 'payment_method',