Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
[AIRFLOW-6837] Limit description length of a Dag on HomePage (apache#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pingzh authored and galuszkak committed Mar 5, 2020
1 parent 4a4b7bb commit 2b94c6a
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 @@ -99,7 +99,7 @@ <h2>DAGs</h2>
<!-- Column 3: Name -->
<td>
<span>
<a href="{{ url_for('Airflow.'+ dag.default_view, dag_id=dag.dag_id) }}" title="{{ dag.description }}">
<a href="{{ url_for('Airflow.'+ dag.default_view, dag_id=dag.dag_id) }}" title="{{ dag.description[0:80] + '...' if dag.description|length > 80 else dag.description }}">
{{ dag.dag_id }}
</a>
</span>
Expand Down

0 comments on commit 2b94c6a

Please sign in to comment.