From 509ebca449050c69077a5f42ce811ab4ccb0cf43 Mon Sep 17 00:00:00 2001 From: Ashutosh Shaha <61512480+ashutosh264@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:17:57 +0530 Subject: [PATCH] [v3-3-test] Show Dag Run conf column by default in Dag Runs list (#68904) 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. (cherry picked from commit 50c44b5fcb9ec935ed9b1748fd844d092b96f724) Co-authored-by: Ashutosh Shaha <61512480+ashutosh264@users.noreply.github.com> 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,