Skip to content

Commit

Permalink
Fix tag link on dag detail page (#24918)
Browse files Browse the repository at this point in the history
  • Loading branch information
xianghuzhao committed Jul 8, 2022
1 parent 8200723 commit 24220bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/templates/airflow/dag_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h3>{{ title }}</h3>
{% if tags is defined and tags %}
{% for tag in tags | sort(attribute='name') %}
<a class="label label-info"
href="/home?tags={{ tag.name }}"
href="{{ url_for('Airflow.index', tags=tag.name) }}"
style="margin: 3px 6px 3px 0;"
title="All DAGs tagged &ldquo;{{ tag.name }}&rdquo;"
>
Expand Down

0 comments on commit 24220bc

Please sign in to comment.