From 2ac8344555cbc3cd9d0cd4093e425ccf851b2926 Mon Sep 17 00:00:00 2001 From: Jed Cunningham Date: Fri, 16 Sep 2022 09:12:40 -0600 Subject: [PATCH] DAG Deps extends `base_template` The DAG Deps page should extend `base_template` instead of Airflow's main template (which is the default `base_template`). This is consistent with all other pages and allows for proper UI customization. --- airflow/www/templates/airflow/dag_dependencies.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/www/templates/airflow/dag_dependencies.html b/airflow/www/templates/airflow/dag_dependencies.html index 3d25e1ce74d08..70a4d291121c1 100644 --- a/airflow/www/templates/airflow/dag_dependencies.html +++ b/airflow/www/templates/airflow/dag_dependencies.html @@ -17,7 +17,7 @@ under the License. #} -{% extends "airflow/main.html" %} +{% extends base_template %} {% block title %}Airflow - DAG Dependencies{% endblock %}