Skip to content

Commit

Permalink
[AIRFLOW-7016] Sort dag tags in the UI (#7661)
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharya19 authored Mar 10, 2020
1 parent 1f77f94 commit e6af02f
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 @@ -105,7 +105,7 @@ <h2>DAGs</h2>
</span>

<div style="float: right; max-width: 70%; text-align: right; line-height: 160%;">
{% for tag in dag.tags %}
{% for tag in dag.tags | sort(attribute='name') %}
<span class="label label-success" style="margin: 3px;">{{ tag.name }}</span>
{% endfor %}
</div>
Expand Down

0 comments on commit e6af02f

Please sign in to comment.