diff --git a/packages/node_modules/@node-red/runtime/lib/api/diagnostics.js b/packages/node_modules/@node-red/runtime/lib/api/diagnostics.js index d942a9aa1..0293c7f97 100644 --- a/packages/node_modules/@node-red/runtime/lib/api/diagnostics.js +++ b/packages/node_modules/@node-red/runtime/lib/api/diagnostics.js @@ -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",