This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 396783a54b68abaca60f94d078044fc7ee8ad161 Author: Pierre Jeambrun <[email protected]> AuthorDate: Fri Apr 25 16:41:55 2025 +0200 Display bundle version in Dag details tab (#49787) (cherry picked from commit ea5197e9cd0a1f99f22e6fde1451bf3f1aabf83b) --- airflow-core/src/airflow/ui/src/pages/Dag/Details.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/airflow-core/src/airflow/ui/src/pages/Dag/Details.tsx b/airflow-core/src/airflow/ui/src/pages/Dag/Details.tsx index e164e602c28..bc290c9f1dd 100644 --- a/airflow-core/src/airflow/ui/src/pages/Dag/Details.tsx +++ b/airflow-core/src/airflow/ui/src/pages/Dag/Details.tsx @@ -70,6 +70,12 @@ export const Details = () => { <Time datetime={dag.last_parsed} /> </Table.Cell> </Table.Row> + {dag.bundle_version !== null && ( + <Table.Row> + <Table.Cell>Bundle Version</Table.Cell> + <Table.Cell>{dag.bundle_version}</Table.Cell> + </Table.Row> + )} <Table.Row> <Table.Cell>Latest Dag Version</Table.Cell> <Table.Cell>
