This is an automated email from the ASF dual-hosted git repository.

jedcunningham pushed a commit to branch v2-8-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit bcdd076200a4caf1f7f1533e1d2f5dddaff2fb56
Author: Jed Cunningham <[email protected]>
AuthorDate: Mon Mar 18 16:17:58 2024 -0600

    Fix filtered TI links (#38274)
    
    We have links to the graph, filtered down to a specific TI. This was
    accidentally broken in #38096.
    
    (cherry picked from commit 8ea95e778a1a0b90aaeecd156d6924915a6f1c27)
---
 airflow/www/utils.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/airflow/www/utils.py b/airflow/www/utils.py
index 389d9e25ca..6f7f9c5945 100644
--- a/airflow/www/utils.py
+++ b/airflow/www/utils.py
@@ -435,6 +435,7 @@ def task_instance_link(attr):
         "Airflow.grid",
         dag_id=dag_id,
         task_id=task_id,
+        root=task_id,
         dag_run_id=run_id,
         tab="graph",
         map_index=attr.get("map_index", -1),

Reply via email to