diff --git a/airflow/www/static/js/graph.js b/airflow/www/static/js/graph.js index aafef171be0c8..381b8784b888a 100644 --- a/airflow/www/static/js/graph.js +++ b/airflow/www/static/js/graph.js @@ -454,7 +454,7 @@ function updateNodesStates(tis) { for (const nodeId of g.nodes()) { const { elem } = g.node(nodeId); if (!elem) { - return; + continue; } elem.setAttribute('class', `node enter ${getNodeState(nodeId, tis)}`); elem.setAttribute('data-toggle', 'tooltip');