adjust settings comments to more like existing std

This commit is contained in:
Steve-Mcl 2022-04-27 12:05:51 +01:00
parent 367f9b6232
commit 4054d0eca7
1 changed files with 5 additions and 5 deletions

View File

@ -237,16 +237,16 @@ module.exports = {
*/
// lang: "de",
/** ### Configure diagnostics options
* - `.enabled`: When `enabled` is `true` (or unset), diagnostics data will
/** Configure diagnostics options
* - enabled: When `enabled` is `true` (or unset), diagnostics data will
* be available at http://localhost:1880/diagnostics
* - `.ui`: When `ui` is `true` (or unset), the action `show-system-info` will
* - ui: When `ui` is `true` (or unset), the action `show-system-info` will
* be available to logged in users of node-red editor
*/
diagnostics: {
/** @type {boolean} `enabled` - enable or disable diagnostics endpoint. Must be set to `false` to disable */
/** enable or disable diagnostics endpoint. Must be set to `false` to disable */
enabled: true,
/** @type {boolean} `ui` - enable or disable diagnostics display in the node-red editor. Must be set to `false` to disable */
/** enable or disable diagnostics display in the node-red editor. Must be set to `false` to disable */
ui: true,
},