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

pierrejeambrun 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 50c44b5fcb9 Show Dag Run conf column by default in Dag Runs list 
(#68904)
50c44b5fcb9 is described below

commit 50c44b5fcb9ec935ed9b1748fd844d092b96f724
Author: Ashutosh Shaha <[email protected]>
AuthorDate: Wed Jul 8 15:17:57 2026 +0530

    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.
    
    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 971354ebe55..06374d10b27 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,

Reply via email to