We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a7f0e commit 36f7660Copy full SHA for 36f7660
1 file changed
client/src/pages/automation/workflow-executions/components/WorkflowExecutionsTable.tsx
@@ -64,6 +64,17 @@ const WorkflowExecutionsTable = ({data}: {data: WorkflowExecution[]}) => {
64
),
65
header: 'Execution date',
66
}),
67
+ columnHelper.accessor((row) => row.job, {
68
+ cell: (info) => (
69
+ <>
70
+ {info.getValue()?.endDate &&
71
+ `${info.getValue()?.endDate?.toLocaleDateString()} ${info
72
+ .getValue()
73
+ ?.endDate?.toLocaleTimeString()}`}
74
+ </>
75
+ ),
76
+ header: 'End date',
77
+ }),
78
columnHelper.accessor((row) => row.job, {
79
cell: (info) => <WorkflowExecutionsDropdownMenu data={info} />,
80
header: 'Action',
0 commit comments