This is an automated email from the ASF dual-hosted git repository.
Lee-W pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-3-test by this push:
new 9856115f815 [v3-3-test] Add partition_date to DagRun detail page
(#68969) (#68977)
9856115f815 is described below
commit 9856115f815cd3dfab2411a7036dedd5ec785b6d
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 26 08:56:52 2026 +0800
[v3-3-test] Add partition_date to DagRun detail page (#68969) (#68977)
Co-authored-by: Wei Lee <[email protected]>
---
airflow-core/src/airflow/ui/public/i18n/locales/en/common.json | 1 +
airflow-core/src/airflow/ui/public/i18n/locales/zh-TW/common.json | 1 +
airflow-core/src/airflow/ui/src/pages/Run/Details.tsx | 8 ++++++++
3 files changed, 10 insertions(+)
diff --git a/airflow-core/src/airflow/ui/public/i18n/locales/en/common.json
b/airflow-core/src/airflow/ui/public/i18n/locales/en/common.json
index 3aaa5115bb2..7b5f37c9cfd 100644
--- a/airflow-core/src/airflow/ui/public/i18n/locales/en/common.json
+++ b/airflow-core/src/airflow/ui/public/i18n/locales/en/common.json
@@ -72,6 +72,7 @@
"expectedDuration": "Expected Duration",
"lastSchedulingDecision": "Last Scheduling Decision",
"mappedPartitionKey": "Mapped Partition key",
+ "partitionDate": "Partition Date",
"partitionKey": "Partition key",
"queuedAt": "Queued At",
"runAfter": "Run After",
diff --git a/airflow-core/src/airflow/ui/public/i18n/locales/zh-TW/common.json
b/airflow-core/src/airflow/ui/public/i18n/locales/zh-TW/common.json
index 90debb241c2..a98d200635c 100644
--- a/airflow-core/src/airflow/ui/public/i18n/locales/zh-TW/common.json
+++ b/airflow-core/src/airflow/ui/public/i18n/locales/zh-TW/common.json
@@ -72,6 +72,7 @@
"expectedDuration": "預計時長",
"lastSchedulingDecision": "最後排程決策",
"mappedPartitionKey": "映射分區鍵",
+ "partitionDate": "資產分區日期",
"partitionKey": "資產分區鍵",
"queuedAt": "開始排隊時間",
"runAfter": "最早可執行時間",
diff --git a/airflow-core/src/airflow/ui/src/pages/Run/Details.tsx
b/airflow-core/src/airflow/ui/src/pages/Run/Details.tsx
index e233c528b54..e7ec9fa8364 100644
--- a/airflow-core/src/airflow/ui/src/pages/Run/Details.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/Run/Details.tsx
@@ -145,6 +145,14 @@ export const Details = () => {
<Time datetime={dagRun.data_interval_end} />
</Table.Cell>
</Table.Row>
+ {dagRun.partition_date !== null && (
+ <Table.Row>
+ <Table.Cell>{translate("dagRun.partitionDate")}</Table.Cell>
+ <Table.Cell>
+ <Time datetime={dagRun.partition_date} />
+ </Table.Cell>
+ </Table.Row>
+ )}
<Table.Row>
<Table.Cell>{translate("dagRun.triggeredBy")}</Table.Cell>
<Table.Cell>{dagRun.triggered_by}</Table.Cell>