Skip to content

Commit

Permalink
Remove titles from link buttons (#23736)
Browse files Browse the repository at this point in the history
(cherry picked from commit 239a9dc)
  • Loading branch information
bbovenzi authored and ephraimbuddy committed May 21, 2022
1 parent a780109 commit 77477dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/www/templates/airflow/dag.html
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,10 @@ <h4 class="modal-title" id="taskInstanceModalLabel">
<a id="btn_xcom" class="btn btn-sm" data-base-url="{{ url_for('Airflow.xcom') }}">
XCom
</a>
<a id="btn_mapped" style="display: none;" class="btn btn-sm" data-base-url="{{ url_for('TaskInstanceModelView.list') }}" title="Show the mapped instances for this DAG run">
<a id="btn_mapped" style="display: none;" class="btn btn-sm" data-base-url="{{ url_for('TaskInstanceModelView.list') }}">
List Instances, current run
</a>
<a id="btn_ti" class="btn btn-sm" data-base-url="{{ url_for('TaskInstanceModelView.list') }}" title="View all instances across all DAG runs">
<a id="btn_ti" class="btn btn-sm" data-base-url="{{ url_for('TaskInstanceModelView.list') }}">
List Instances, all runs
</a>
<button id="btn_filter" type="button" class="btn btn-sm" title="Filter on this task and upstream">
Expand Down

0 comments on commit 77477dd

Please sign in to comment.