pierrejeambrun commented on code in PR #61443:
URL: https://github.com/apache/airflow/pull/61443#discussion_r2770378587


##########
airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx:
##########
@@ -72,12 +72,12 @@ const getColumns = ({ open, translate }: ColumnsProps): 
Array<ColumnDef<XComResp
     cell: ({ row: { original } }: { row: { original: XComResponse } }) => (
       <Link asChild color="fg.info" fontWeight="bold">
         <RouterLink to={`/dags/${original.dag_id}/runs/${original.run_id}`}>
-          <TruncatedText text={original.run_id} />
+          <TruncatedText text={original.run_after} />

Review Comment:
   This probably should be a `<Time />` comoponent instead of a plain test.



##########
airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx:
##########
@@ -72,12 +72,12 @@ const getColumns = ({ open, translate }: ColumnsProps): 
Array<ColumnDef<XComResp
     cell: ({ row: { original } }: { row: { original: XComResponse } }) => (
       <Link asChild color="fg.info" fontWeight="bold">
         <RouterLink to={`/dags/${original.dag_id}/runs/${original.run_id}`}>
-          <TruncatedText text={original.run_id} />
+          <TruncatedText text={original.run_after} />

Review Comment:
   Maybe add a column instead of replacing ? So people used to it are not 
confused?



-- 
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]

Reply via email to