From 40b3d779bc088a48ea605380f45dec71abe5eda3 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Thu, 19 Feb 2026 13:52:32 +0700 Subject: [PATCH] refactor(FE): Update column header and adjust table margin --- src/components/pages/closing/ClosingsTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/pages/closing/ClosingsTable.tsx b/src/components/pages/closing/ClosingsTable.tsx index 5a8aab17..3e522167 100644 --- a/src/components/pages/closing/ClosingsTable.tsx +++ b/src/components/pages/closing/ClosingsTable.tsx @@ -101,7 +101,7 @@ const ClosingsTable = () => { const closingsColumns: ColumnDef[] = [ { - header: '#', + header: 'No', cell: (props) => props.row.index + 1, }, { @@ -273,7 +273,7 @@ const ClosingsTable = () => { setRowSelection={setRowSelection} className={{ containerClassName: cn({ - 'w-full mb-20': + 'w-full mb-0': isResponseSuccess(closings) && closings?.data?.length === 0, }), }}