refactor(FE): Update column header and adjust table margin

This commit is contained in:
rstubryan
2026-02-19 13:52:32 +07:00
parent 1bdf413650
commit 40b3d779bc
@@ -101,7 +101,7 @@ const ClosingsTable = () => {
const closingsColumns: ColumnDef<Closing>[] = [ const closingsColumns: ColumnDef<Closing>[] = [
{ {
header: '#', header: 'No',
cell: (props) => props.row.index + 1, cell: (props) => props.row.index + 1,
}, },
{ {
@@ -273,7 +273,7 @@ const ClosingsTable = () => {
setRowSelection={setRowSelection} setRowSelection={setRowSelection}
className={{ className={{
containerClassName: cn({ containerClassName: cn({
'w-full mb-20': 'w-full mb-0':
isResponseSuccess(closings) && closings?.data?.length === 0, isResponseSuccess(closings) && closings?.data?.length === 0,
}), }),
}} }}