From 7805859e629cf4dc5b044fa1cbf3fcfadd49f9a8 Mon Sep 17 00:00:00 2001 From: ashutosh264 Date: Fri, 3 Jul 2026 12:07:28 +0530 Subject: [PATCH] Show Dag Run conf column by default in Dag Runs list Airflow 3 hid the conf column even though the API and column definition already existed. Operators triggering Dags with run conf need that context in the list view without toggling columns manually. closes: #53382 --- airflow-core/src/airflow/ui/src/pages/DagRuns/DagRuns.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/pages/DagRuns/DagRuns.tsx b/airflow-core/src/airflow/ui/src/pages/DagRuns/DagRuns.tsx index 971354ebe55b5..06374d10b27a1 100644 --- a/airflow-core/src/airflow/ui/src/pages/DagRuns/DagRuns.tsx +++ b/airflow-core/src/airflow/ui/src/pages/DagRuns/DagRuns.tsx @@ -225,7 +225,6 @@ export const DagRuns = () => { const { setTableURLState, tableURLState } = useTableURLState({ columnVisibility: { - conf: false, dag_version: false, end_date: false, partition_key: false,