mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Handle nodes with no wires array
This commit is contained in:
		| @@ -1109,7 +1109,7 @@ RED.nodes = (function() { | ||||
|                                     defaults: {}, | ||||
|                                     label: "unknown: "+n.type, | ||||
|                                     labelStyle: "red-ui-flow-node-label-italic", | ||||
|                                     outputs: n.outputs||n.wires.length, | ||||
|                                     outputs: n.outputs|| (n.wires && n.wires.length) || 0, | ||||
|                                     set: registry.getNodeSet("node-red/unknown") | ||||
|                                 } | ||||
|                             } else { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user