Skip to content

Commit

Permalink
Added ETA & task id tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul-538 committed Sep 5, 2024
1 parent c76acd7 commit 348e8c4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/config/tableColumns.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ export const adminMemberListColumns = [
];

export const videoTaskListColumns = [
{
name:"id",
label:"Task Id"
},
{
name: "task_type",
label: "Task Type",
Expand All @@ -174,6 +178,15 @@ export const videoTaskListColumns = [
},
},
},
{
name: "eta",
label: "ETA",
options: {
customBodyRender: (value) => {
return <Box>{moment(value).format("DD/MM/YYYY HH:mm:ss")}</Box>;
},
},
},
{
name: "created_at",
label: "Created At",
Expand Down

0 comments on commit 348e8c4

Please sign in to comment.