This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 7f5e42c7c63 [v3-1-test] Make Dag Run ID visible in Dag Header Card
(#56392) (#56409)
7f5e42c7c63 is described below
commit 7f5e42c7c63c3e9a454f65d68f2976cbce686a9d
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Oct 5 11:00:36 2025 +0200
[v3-1-test] Make Dag Run ID visible in Dag Header Card (#56392) (#56409)
(cherry picked from commit e651ba9d148bda8104e31dcf750e9439b4ff0e0f)
Co-authored-by: Jens Scheffler <[email protected]>
---
airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx | 3 +--
airflow-core/src/airflow/ui/src/pages/Run/Header.tsx | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx
b/airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx
index c93475ecbfd..d877b4daa1b 100644
--- a/airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx
+++ b/airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx
@@ -28,7 +28,6 @@ import {
} from "openapi/queries";
import { BreadcrumbStats } from "src/components/BreadcrumbStats";
import { StateBadge } from "src/components/StateBadge";
-import Time from "src/components/Time";
import { TogglePause } from "src/components/TogglePause";
import { isStatePending, useAutoRefresh } from "src/utils";
@@ -82,7 +81,7 @@ export const DagBreadcrumb = () => {
// Add dag run breadcrumb
if (runId !== undefined) {
links.push({
- label: dagRun === undefined ? runId : <Time datetime={dagRun.run_after}
/>,
+ label: dagRun === undefined ? runId : dagRun.dag_run_id,
labelExtra: dagRun === undefined ? undefined : <StateBadge fontSize="xs"
state={dagRun.state} />,
title: translate("dagRun_one"),
value: `/dags/${dagId}/runs/${runId}`,
diff --git a/airflow-core/src/airflow/ui/src/pages/Run/Header.tsx
b/airflow-core/src/airflow/ui/src/pages/Run/Header.tsx
index dff8a604919..d95ddab0ceb 100644
--- a/airflow-core/src/airflow/ui/src/pages/Run/Header.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/Run/Header.tsx
@@ -144,7 +144,7 @@ export const Header = ({
),
},
]}
- title={<Time datetime={dagRun.run_after} />}
+ title={dagRun.dag_run_id}
/>
</Box>
);