You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2022/07/21 12:33:19 UTC

[airflow] branch main updated: call updateNodeLabels after expandGroup (#25217)

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

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 90a157a64a call updateNodeLabels after expandGroup (#25217)
90a157a64a is described below

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

    call updateNodeLabels after expandGroup (#25217)
---
 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) {