mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Include hasUser=false config nodes when exporting whole flow (#3048)
This commit is contained in:
		@@ -701,6 +701,13 @@ RED.clipboard = (function() {
 | 
			
		||||
                var activeWorkspace = RED.workspaces.active();
 | 
			
		||||
                nodes = RED.nodes.groups(activeWorkspace);
 | 
			
		||||
                nodes = nodes.concat(RED.nodes.filterNodes({z:activeWorkspace}));
 | 
			
		||||
                RED.nodes.eachConfig(function(n) {
 | 
			
		||||
                    if (n.z === RED.workspaces.active() && n._def.hasUsers === false) {
 | 
			
		||||
                        // Grab any config nodes scoped to this flow that don't
 | 
			
		||||
                        // require any flow-nodes to use them
 | 
			
		||||
                        nodes.push(n);
 | 
			
		||||
                    }
 | 
			
		||||
                });
 | 
			
		||||
                var parentNode = RED.nodes.workspace(activeWorkspace)||RED.nodes.subflow(activeWorkspace);
 | 
			
		||||
                nodes.unshift(parentNode);
 | 
			
		||||
                nodes = RED.nodes.createExportableNodeSet(nodes);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user