mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	fix selection of link node not existing within active workspace
This commit is contained in:
		| @@ -1892,7 +1892,8 @@ RED.view = (function() { | ||||
|             activeLinkNodes = {}; | ||||
|             for (var i=0;i<movingSet.length();i++) { | ||||
|                 var msn = movingSet.get(i); | ||||
|                 if (msn.n.type === "link out" || msn.n.type === "link in") { | ||||
|                 if ((msn.n.type === "link out" || msn.n.type === "link in") && | ||||
|                     (msn.n.z === activeWorkspace)) { | ||||
|                     var linkNode = msn.n; | ||||
|                     activeLinkNodes[linkNode.id] = linkNode; | ||||
|                     var offFlowLinks = {}; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user