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 985fc5cfd9337004883c99b0e832ec2d438b76e9 Author: Karthikeyan Singaravelan <[email protected]> AuthorDate: Wed Apr 23 23:10:10 2025 +0530 Remove extra slash so that the runs tab is selected. (#49600) (cherry picked from commit d391a6d1e28ea707ef2b77fb72bd0a8072514957) --- airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 610666e4ced..7c2839e6da6 100644 --- a/airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx +++ b/airflow-core/src/airflow/ui/src/layouts/Details/DagBreadcrumb.tsx @@ -96,7 +96,7 @@ export const DagBreadcrumb = () => { } if (runId === undefined && taskId !== undefined) { - links.push({ label: "All Runs", title: "Dag Run", value: `/dags/${dagId}/runs/` }); + links.push({ label: "All Runs", title: "Dag Run", value: `/dags/${dagId}/runs` }); links.push({ label: task?.task_display_name ?? taskId, title: "Task" }); }
