From 72c67ce2c6df1cf15c955397aeaade41ef54eb92 Mon Sep 17 00:00:00 2001 From: Brent Bovenzi Date: Thu, 21 Jul 2022 12:13:59 +0100 Subject: [PATCH] call updateNodeLabels after expandGroup --- 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 d45557a3f64df..b58e2c20028b4 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) {