uranusjr commented on code in PR #32520:
URL: https://github.com/apache/airflow/pull/32520#discussion_r1316947224
##########
airflow/www/templates/airflow/dags.html:
##########
@@ -257,7 +257,7 @@ <h2>{{ page_title }}</h2>
<td>
<a href="{{ url_for('Airflow.'+ dag.get_default_view(),
dag_id=dag.dag_id) }}"
title="{{ dag.description[0:80] + '…' if dag.description and
dag.description|length > 80 else dag.description|default('', true) }}">
- <strong>{{ dag.dag_id }}</strong>
+ <strong title="{{dag.dag_id}}">{{ dag.dag_display_name
}}</strong>
Review Comment:
```suggestion
<strong title="{{ dag.dag_id }}">{{ dag.dag_display_name
}}</strong>
```
--
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]