Skip to content

Commit cfb1a94

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

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
"allRunTypes": "All Run Types",
9898
"allStates": "All States",
9999
"columns": {
100+
"conf": "Conf",
100101
"dagId": "Dag ID",
101102
"dagVersions": "Dag Versions",
102103
"duration": "Duration",

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)