From 8e2479543f88fbfa047f9451ea1c6df5158a1f54 Mon Sep 17 00:00:00 2001 From: maryliag Date: Mon, 20 Mar 2023 09:32:05 -0400 Subject: [PATCH] ui: fix jobs column name The Last Execution Time called was previously labelled as Last Modified Time by mistake. This commit fixes to use the correct name. Epic: None Release note (ui change): Update the Jobs table column name to the correct Last Execution Time. --- pkg/ui/workspaces/cluster-ui/src/jobs/jobsPage/jobsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ui/workspaces/cluster-ui/src/jobs/jobsPage/jobsTable.tsx b/pkg/ui/workspaces/cluster-ui/src/jobs/jobsPage/jobsTable.tsx index 896a6dd51972..61f305d097ee 100644 --- a/pkg/ui/workspaces/cluster-ui/src/jobs/jobsPage/jobsTable.tsx +++ b/pkg/ui/workspaces/cluster-ui/src/jobs/jobsPage/jobsTable.tsx @@ -193,7 +193,7 @@ export function makeJobsColumns(): ColumnDescriptor[] { style="tableTitle" content={

Date and time the job was last executed.

} > - {jobsColumnLabels.lastModifiedTime} + {jobsColumnLabels.lastExecutionTime} ), cell: job => TimestampToMoment(job?.last_run).format(DATE_FORMAT_24_UTC),