Merge remote-tracking branch 'origin/staging' into origin/production

This commit is contained in:
Linksehat Staging Server
2024-02-22 08:52:24 +07:00

View File

@@ -298,8 +298,8 @@ export default function List() {
setData(
response.data.data.map((obj: any) => ({
...obj,
start_date: <Label>{obj.start_date ? fDateSuffix(obj.start_date) : '-'}</Label>,
end_date: <Label> {obj.end_date ? fDateSuffix(obj.end_date) : '-'}</Label>,
start_date: obj.start_date ? <Label>{fDateSuffix(obj.start_date)}</Label> : '-',
end_date: obj.end_date ? <Label>{fDateSuffix(obj.end_date)}</Label> : '-',
action: (
<TableMoreMenu
actions={
@@ -315,9 +315,9 @@ export default function List() {
</>
}
/>
),
}))
);
setPaginationTable(response.data);