From 2b81fc47e25001bc9e91d3ceeb1d69ddf57451db Mon Sep 17 00:00:00 2001 From: Hunter Thornsberry Date: Sat, 7 Sep 2024 20:19:51 -0400 Subject: [PATCH] disable the public key input --- src/components/PageComponents/Config/Security.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PageComponents/Config/Security.tsx b/src/components/PageComponents/Config/Security.tsx index 550b55e0..9ede77e2 100644 --- a/src/components/PageComponents/Config/Security.tsx +++ b/src/components/PageComponents/Config/Security.tsx @@ -164,9 +164,9 @@ export const Security = (): JSX.Element => { type: "text", name: "publicKey", label: "Public Key", + disabled: true, description: "Sent out to other nodes on the mesh to allow them to compute a shared secret key", - disabledBy: [{ fieldName: "always" }], properties: { value: publicKey, },