Skip to content

Commit

Permalink
[Airflow] Updates the width of 'Runs' colum in the Airflow frontend (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
SteNicholas authored Nov 11, 2021
1 parent 0d6af9a commit 5890f8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/airflow/airflow/www/templates/airflow/dags.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h2>DAGs</h2>
{% endfor %}
</td>
{# Column 4: Dag Runs #}
<td style="padding:0; width:120px;">
<td style="padding:0; width:130px;">
{{ loading_dots(classes='js-loading-dag-stats text-muted') }}
<svg height="10" width="10" id="dag-run-{{ dag.safe_dag_id }}" style="display: block;"></svg>
</td>
Expand Down Expand Up @@ -393,7 +393,7 @@ <h2>DAGs</h2>
function drawDagStatsForDag(dag_id, stats) {
g = d3.select('svg#dag-run-' + dag_id.replace(/\./g, '__dot__'))
.attr('height', diameter + (stroke_width_hover * 2))
.attr('width', '110px')
.attr('width', '120px')
.selectAll("g")
.data(states)
.enter()
Expand Down

0 comments on commit 5890f8c

Please sign in to comment.