pierrejeambrun commented on code in PR #31553:
URL: https://github.com/apache/airflow/pull/31553#discussion_r1206709881
##########
airflow/www/templates/airflow/dags.html:
##########
@@ -159,7 +159,7 @@ <h2>{{ page_title }}</h2>
<form id="tags_form">
<div class="form-group search-input">
<select multiple name="tags" id="tags_filter"
class="select2-drop-mask">
- {% for tag in tags %}
+ {% for tag in tags.sort() %}
Review Comment:
Can you `order_by` directly in the query then ? There is no need to iterate
an extra time just to order it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]