You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/09/23 03:19:25 UTC

[airflow] 04/13: DAG Deps extends `base_template` (#26439)

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

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

commit 69274caf613950939df3bf8a96a5b27336b20843
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Fri Sep 16 16:36:41 2022 -0700

    DAG Deps extends `base_template` (#26439)
    
    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.
    
    (cherry picked from commit 9925bbd98156bc9f3ab792da2eb484bc45daa69c)
---
 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 3d25e1ce74..70a4d29112 100644
--- a/airflow/www/templates/airflow/dag_dependencies.html
+++ b/airflow/www/templates/airflow/dag_dependencies.html
@@ -17,7 +17,7 @@ specific language governing permissions and limitations
 under the License.
 #}
 
-{% extends "airflow/main.html" %}
+{% extends base_template %}
 
 {% block title %}Airflow - DAG Dependencies{% endblock %}