fix: add created_at column

This commit is contained in:
ValdiANS
2026-05-13 10:51:46 +07:00
parent 3a2e74b559
commit 280d790f0c
@@ -772,6 +772,14 @@ const MarketingTable = () => {
}
},
},
{
accessorKey: 'created_at',
header: 'Tanggal Dibuat',
cell: (props) =>
props.row.original.created_at
? formatDate(props.row.original.created_at, 'DD MMM yyyy')
: '-',
},
{
id: 'actions',
maxSize: 80,