You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/08/15 18:44:59 UTC

[airflow] 23/45: call updateNodeLabels after expandGroup (#25217)

This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 2f6d9ff25c87c30114091c3d0c80d57155c3cc58
Author: Brent Bovenzi <br...@gmail.com>
AuthorDate: Thu Jul 21 08:33:12 2022 -0400

    call updateNodeLabels after expandGroup (#25217)
    
    (cherry picked from commit 90a157a64ade1e4efe368889ac0f88a6fe551156)
---
 airflow/www/static/js/graph.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/airflow/www/static/js/graph.js b/airflow/www/static/js/graph.js
index d45557a3f6..b58e2c2002 100644
--- a/airflow/www/static/js/graph.js
+++ b/airflow/www/static/js/graph.js
@@ -176,6 +176,7 @@ function draw() {
       // A group node
       if (d3.event.defaultPrevented) return;
       expandGroup(nodeId, node);
+      updateNodeLabels(nodes, taskInstances);
       draw();
       focusGroup(nodeId);
     } else if (nodeId in taskInstances) {