mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #4518 from kazuhitoyokoi/master-fixquickadddialog4sf
Fix subflow ports in Quick Add dialog
This commit is contained in:
		| @@ -186,8 +186,15 @@ RED.typeSearch = (function() { | ||||
|                 var iconContainer = $('<div/>',{class:"red-ui-palette-icon-container"}).appendTo(nodeDiv); | ||||
|                 RED.utils.createIconElement(icon_url, iconContainer, false); | ||||
|  | ||||
|  | ||||
|                 if (!/^_action_:/.test(object.type) && object.type !== "junction") { | ||||
|                 if (/^subflow:/.test(object.type)) { | ||||
|                     var sf = RED.nodes.subflow(object.type.substring(8)); | ||||
|                     if (sf.in.length > 0) { | ||||
|                         $('<div/>',{class:"red-ui-search-result-node-port"}).appendTo(nodeDiv); | ||||
|                     } | ||||
|                     if (sf.out.length > 0) { | ||||
|                         $('<div/>',{class:"red-ui-search-result-node-port red-ui-search-result-node-output"}).appendTo(nodeDiv); | ||||
|                     } | ||||
|                 } else if (!/^_action_:/.test(object.type) && object.type !== "junction") { | ||||
|                     if (def.inputs > 0) { | ||||
|                         $('<div/>',{class:"red-ui-search-result-node-port"}).appendTo(nodeDiv); | ||||
|                     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user