This is an automated email from the ASF dual-hosted git repository.

shubhamraj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new b35c155bf8b Fix dag run accessorkey on clear ti page (#64072)
b35c155bf8b is described below

commit b35c155bf8b5faf67d6ce438354d2d2e776899ea
Author: Shubham Raj <[email protected]>
AuthorDate: Tue Mar 24 00:21:59 2026 +0530

    Fix dag run accessorkey on clear ti page (#64072)
---
 airflow-core/src/airflow/ui/src/components/ActionAccordion/columns.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/airflow-core/src/airflow/ui/src/components/ActionAccordion/columns.tsx 
b/airflow-core/src/airflow/ui/src/components/ActionAccordion/columns.tsx
index a787d1d2fc3..cda92ab45f3 100644
--- a/airflow-core/src/airflow/ui/src/components/ActionAccordion/columns.tsx
+++ b/airflow-core/src/airflow/ui/src/components/ActionAccordion/columns.tsx
@@ -46,7 +46,7 @@ export const getColumns = (translate: TFunction): 
Array<MetaColumn<TaskInstanceR
     header: translate("mapIndex"),
   },
   {
-    accessorKey: "run_id",
+    accessorKey: "dag_run_id",
     header: translate("runId"),
   },
 ];

Reply via email to