Browse Source

fix(Connect): disable the address and TLS inputs when connecting

pull/202/head
Nick Oliver 2 years ago
parent
commit
54d555941e
  1. 3
      src/components/PageComponents/Connect/HTTP.tsx

3
src/components/PageComponents/Connect/HTTP.tsx

@ -63,6 +63,7 @@ export const HTTP = ({ closeDialog }: TabElementProps): JSX.Element => {
// label="IP Address/Hostname"
prefix={tlsEnabled ? "https://" : "http://"}
placeholder="000.000.000.000 / meshtastic.local"
disabled={connectionInProgress}
{...register("ip")}
/>
<Controller
@ -74,7 +75,7 @@ export const HTTP = ({ closeDialog }: TabElementProps): JSX.Element => {
<Switch
// label="Use TLS"
// description="Description"
disabled={location.protocol === "https:"}
disabled={location.protocol === "https:" || connectionInProgress}
checked={value}
{...rest}
/>

Loading…
Cancel
Save