mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	fix up report - remove duplicate entries
This commit is contained in:
		| @@ -117,18 +117,15 @@ function buildDiagnosticReport(scope, callback) { | ||||
|  | ||||
|                 adminAuth: runtime.settings.adminAuth ? "SET" : "UNSET", | ||||
|  | ||||
|                 httpAdminRoot: runtime.settings.adminAuth ? "SET" : "UNSET", | ||||
|                 httpAdminCors: runtime.settings.httpAdminCors ? "SET" : "UNSET", | ||||
|                 httpNodeAuth: runtime.settings.httpNodeAuth ? "SET" : "UNSET", | ||||
|  | ||||
|                 httpAdminRoot: runtime.settings.httpAdminRoot || "UNSET", | ||||
|                 httpAdminCors: runtime.settings.httpAdminCors ? "SET" : "UNSET", | ||||
|                 httpNodeAuth: runtime.settings.httpNodeAuth ? "SET" : "UNSET", | ||||
|  | ||||
|                 httpNodeRoot: runtime.settings.httpNodeRoot || "UNSET", | ||||
|                 httpNodeCors: runtime.settings.httpNodeCors ? "SET" : "UNSET", | ||||
|  | ||||
|                 httpStatic: runtime.settings.httpStatic ? "SET" : "UNSET", | ||||
|                 httpStatic: runtime.settings.httpStaticRoot || "UNSET", | ||||
|                 httpStaticRoot: runtime.settings.httpStaticRoot || "UNSET", | ||||
|                 httpStaticCors: runtime.settings.httpStaticCors ? "SET" : "UNSET", | ||||
|  | ||||
|                 uiHost: runtime.settings.uiHost ? "SET" : "UNSET", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user