Skip to content

Commit

Permalink
ui: fix jobs column name
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
maryliag committed Mar 20, 2023
1 parent 6839729 commit 8e24795
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export function makeJobsColumns(): ColumnDescriptor<Job>[] {
style="tableTitle"
content={<p>Date and time the job was last executed.</p>}
>
{jobsColumnLabels.lastModifiedTime}
{jobsColumnLabels.lastExecutionTime}
</Tooltip>
),
cell: job => TimestampToMoment(job?.last_run).format(DATE_FORMAT_24_UTC),
Expand Down

0 comments on commit 8e24795

Please sign in to comment.