sardell commented on a change in pull request #5765:
URL: https://github.com/apache/nifi/pull/5765#discussion_r809517892



##########
File path: 
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-label.js
##########
@@ -527,7 +538,7 @@
 
             // update
             var updated = selection.merge(entered);
-            updated.call(updateLabels).call(nfCanvasUtils.position, 
transition);
+            updated.call(updateLabels).call(nfCanvasUtils.position, 
transition).call(sort);

Review comment:
       Thanks for pointing this out. Unfortunately, I still see the behavior 
your describing even after updating `add` at line 484 from
   ```
               // update
               updateLabels(selection.merge(entered));
   ```
   to
   ```
               // update
               var updated = selection.merge(entered);
               updated.call(updateLabels).call(nfCanvasUtils.position, 
transition).call(sort);
   ```
   Does anything look off to you about that block of code?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to