mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #5018 from node-red/fix-debug-status-if-null
fix debug status reporting if null
This commit is contained in:
		| @@ -148,7 +148,7 @@ module.exports = function(RED) { | ||||
|                         var st = (typeof output === 'string') ? output : util.inspect(output); | ||||
|                         var fill = "grey"; | ||||
|                         var shape = "dot"; | ||||
|                         if (typeof output === 'object' && hasOwnProperty.call(output, "fill") && hasOwnProperty.call(output, "shape") && hasOwnProperty.call(output, "text")) { | ||||
|                         if (typeof output === 'object' && output?.fill && output?.shape && output?.text) { | ||||
|                             fill = output.fill; | ||||
|                             shape = output.shape; | ||||
|                             st = output.text; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user