Browse Source

Update Security tab

pull/275/head
Tilen Komel 2 years ago
parent
commit
65247c4f35
  1. 13
      src/components/PageComponents/Config/Security.tsx

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

@ -47,18 +47,19 @@ export const Security = (): JSX.Element => {
label: "Security Settings", label: "Security Settings",
description: "Settings for the Security configuration", description: "Settings for the Security configuration",
fields: [ fields: [
{
type: "text",
name: "publicKey",
label: "Public Key",
description: "Sent out to other nodes on the mesh to allow them to compute a shared secret key",
},
{ {
type: "text", type: "text",
name: "privateKey", name: "privateKey",
label: "Private Key", label: "Private Key",
description: "Used to create a shared key with a remote device", description: "Used to create a shared key with a remote device",
}, },
{
type: "text",
name: "publicKey",
label: "Public Key",
description: "Sent out to other nodes on the mesh to allow them to compute a shared secret key",
disabledBy: [ { fieldName: "always" } ]
},
], ],
}, },
{ {

Loading…
Cancel
Save