Skip to content

Commit 83529c8

Browse files
author
Valentyn Druzhynin
committed
Add conf column into Dag Runs page
1 parent e037932 commit 83529c8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

airflow-core/src/airflow/ui/src/i18n/locales/en/dags.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@
104104
"runAfter": "Run After",
105105
"runType": "Run Type",
106106
"startDate": "Start Date",
107-
"state": "State"
107+
"state": "State",
108+
"conf": "Conf"
108109
}
109110
},
110111
"sort": {

airflow-core/src/airflow/ui/src/pages/DagRuns.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@ const runColumns = (translate: TFunction, dagId?: string): Array<ColumnDef<DAGRu
119119
enableSorting: false,
120120
header: translate("dags:runs.columns.dagVersions"),
121121
},
122+
{
123+
accessorKey: "conf",
124+
cell: ({ row: { original } }) => (<pre>{JSON.stringify(original.conf, null, 2)}</pre>),
125+
enableSorting: false,
126+
header: translate("dags:runs.columns.conf"),
127+
},
122128
{
123129
accessorKey: "actions",
124130
cell: ({ row }) => (

0 commit comments

Comments
 (0)