Browse Source

Update descriptions in Security

pull/275/head
Tilen Komel 2 years ago
parent
commit
f0eae444c7
  1. 12
      src/components/PageComponents/Config/Security.tsx

12
src/components/PageComponents/Config/Security.tsx

@ -45,7 +45,7 @@ export const Security = (): JSX.Element => {
fieldGroups={[ fieldGroups={[
{ {
label: "Security Settings", label: "Security Settings",
description: "Settings for the Security module", description: "Settings for the Security configuration",
fields: [ fields: [
{ {
type: "text", type: "text",
@ -69,13 +69,13 @@ export const Security = (): JSX.Element => {
type: "toggle", type: "toggle",
name: "adminChannelEnabled", name: "adminChannelEnabled",
label: "Admin Channel", label: "Admin Channel",
description: "Enable 'admin' channel", description: "Allow incoming device control over the insecure legacy admin channel",
}, },
{ {
type: "toggle", type: "toggle",
name: "isManaged", name: "isManaged",
label: "Is Managed", label: "Is Managed",
description: "Enable if you want to manage this node from other nodes", description: 'If true, device is considered to be "managed" by a mesh administrator via admin messages',
}, },
{ {
type: "text", type: "text",
@ -93,19 +93,19 @@ export const Security = (): JSX.Element => {
type: "toggle", type: "toggle",
name: "bluetoothLoggingEnabled", name: "bluetoothLoggingEnabled",
label: "Bluetooth Logging", label: "Bluetooth Logging",
description: "Enable Bluetooth Logging", description: "Enables device (serial style logs) over Bluetooth",
}, },
{ {
type: "toggle", type: "toggle",
name: "debugLogApiEnabled", name: "debugLogApiEnabled",
label: "Debug Log API", label: "Debug Log API",
description: "Enable Log API", description: "Output live debug logging over serial",
}, },
{ {
type: "toggle", type: "toggle",
name: "serialEnabled", name: "serialEnabled",
label: "Serial", label: "Serial",
description: "Enable Serial" description: "Serial Console over the Stream API"
} }
], ],
}, },

Loading…
Cancel
Save