Skip to content

Commit

Permalink
Fix bug with clicking url-unsafe tags
Browse files Browse the repository at this point in the history
  • Loading branch information
patgarz committed Feb 13, 2024
1 parent 2e15610 commit cabfbd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/templates/airflow/dags.html
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ <h2>{{ page_title }}</h2>
<div>
{% for tag in dag.tags | sort(attribute='name') %}
<a class="label label-info"
href="?tags={{ tag.name }}"
href="?tags={{ tag.name | urlencode }}"
style="margin: 6px 6px 0 0;">
{{ tag.name }}
</a>
Expand Down

0 comments on commit cabfbd7

Please sign in to comment.