@@ -27,6 +27,7 @@ import { DataTable } from "src/components/DataTable";
2727import { useTableURLState } from "src/components/DataTable/useTableUrlState" ;
2828import { ErrorAlert } from "src/components/ErrorAlert" ;
2929import { ExpandCollapseButtons } from "src/components/ExpandCollapseButtons" ;
30+ import Time from "src/components/Time" ;
3031import { TruncatedText } from "src/components/TruncatedText" ;
3132import { SearchParamsKeys , type SearchParamsKeysType } from "src/constants/searchParams" ;
3233import { getTaskInstanceLink } from "src/utils/links" ;
@@ -71,7 +72,7 @@ const columns = (translate: (key: string) => string, open: boolean): Array<Colum
7172 header : translate ( "common:runId" ) ,
7273 } ,
7374 {
74- accessorKey : "task_id " ,
75+ accessorKey : "task_display_name " ,
7576 cell : ( { row : { original } } : { row : { original : XComResponse } } ) => (
7677 < Link asChild color = "fg.info" fontWeight = "bold" >
7778 < RouterLink
@@ -82,18 +83,24 @@ const columns = (translate: (key: string) => string, open: boolean): Array<Colum
8283 taskId : original . task_id ,
8384 } ) }
8485 >
85- < TruncatedText text = { original . task_id } />
86+ < TruncatedText text = { original . task_display_name } />
8687 </ RouterLink >
8788 </ Link >
8889 ) ,
8990 enableSorting : false ,
90- header : translate ( "common:taskId " ) ,
91+ header : translate ( "common:task_one " ) ,
9192 } ,
9293 {
9394 accessorKey : "map_index" ,
9495 enableSorting : false ,
9596 header : translate ( "common:mapIndex" ) ,
9697 } ,
98+ {
99+ accessorKey : "timestamp" ,
100+ cell : ( { row : { original } } ) => < Time datetime = { original . timestamp } /> ,
101+ enableSorting : false ,
102+ header : translate ( "dashboard:timestamp" ) ,
103+ } ,
97104 {
98105 cell : ( { row : { original } } ) => (
99106 < XComEntry
0 commit comments