mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	| @@ -1209,7 +1209,7 @@ RED.editor = (function() { | ||||
|                                 node.l = false; | ||||
|                             } else { | ||||
|                                 // A link node - default state is false | ||||
|                                 if (node.hasOwnProperty('l')) { | ||||
|                                 if (node.hasOwnProperty('l') && node.l) { | ||||
|                                     changes.l = node.l | ||||
|                                     changed = true; | ||||
|                                 } | ||||
| @@ -1219,7 +1219,7 @@ RED.editor = (function() { | ||||
|                             // Checked - show label | ||||
|                             if (!/^link (in|out)$/.test(node.type)) { | ||||
|                                 // Not a link node - default state is true | ||||
|                                 if (node.hasOwnProperty('l')) { | ||||
|                                 if (node.hasOwnProperty('l') && !node.l) { | ||||
|                                     changes.l = node.l | ||||
|                                     changed = true; | ||||
|                                 } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user