bbovenzi commented on code in PR #56030:
URL: https://github.com/apache/airflow/pull/56030#discussion_r2417574689


##########
airflow-core/src/airflow/ui/src/pages/HITLTaskInstances/HITLTaskInstances.tsx:
##########
@@ -79,11 +79,24 @@ const taskInstanceColumns = ({
     ? []
     : [
         {
-          accessorKey: "task_instance.dag_id",
-          enableSorting: false,
+          accessorKey: "dag_id",
+          cell: ({ row: { original } }: TaskInstanceRow) => (
+            <TruncatedText text={original.task_instance.dag_id} />
+          ),
           header: translate("common:dagId"),
         },
       ]),
+  ...(Boolean(runId)
+    ? []
+    : [
+        {
+          accessorKey: "run_id",
+          cell: ({ row: { original } }: TaskInstanceRow) => (
+            <TruncatedText text={original.task_instance.dag_run_id} />

Review Comment:
   Its usually something like
   
   ```
               <Link asChild color="fg.info">
                 <RouterLink to={`/dags/${original.dag_id}`}>
                   <TruncatedText text={original.dag_display_name} />
                 </RouterLink>
               </Link>
   ```



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