Skip to content

Commit

Permalink
Fix wrong parameter for drawDagStatsForDag() in dags.html (#13884)
Browse files Browse the repository at this point in the history
  • Loading branch information
XD-DENG authored Jan 25, 2021
1 parent 35b5a38 commit 477a222
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 @@ -390,7 +390,7 @@ <h2>DAGs</h2>
$('.js-loading-last-run').remove();
}

function drawDagStatsForDag(dag_id, stats) {
function drawDagStatsForDag(dag_id, states) {
g = d3.select('svg#dag-run-' + dag_id.replace(/\./g, '__dot__'))
.attr('height', diameter + (stroke_width_hover * 2))
.attr('width', '110px')
Expand Down

0 comments on commit 477a222

Please sign in to comment.