anshuksi282-ksolves commented on code in PR #57053:
URL: https://github.com/apache/airflow/pull/57053#discussion_r2467944538
##########
airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx:
##########
@@ -82,18 +82,24 @@ const columns = (translate: (key: string) => string, open:
boolean): Array<Colum
taskId: original.task_id,
})}
>
- <TruncatedText text={original.task_id} />
+ <TruncatedText text={original.task_display_name || original.task_id}
/>
</RouterLink>
</Link>
),
enableSorting: false,
- header: translate("common:taskId"),
+ header: translate("common:task_one"),
},
{
accessorKey: "map_index",
enableSorting: false,
header: translate("common:mapIndex"),
},
+ {
+ accessorKey: "timestamp",
+ cell: ({ row: { original } }) => new
Date(original.timestamp).toLocaleString(),
Review Comment:
Hi @bbovenzi ,
The necessary corrections have been applied and pushed to the
xcom_table_timestamp_fix branch.
Ready for your review now.
Thanks!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]