Browse Source

Merge pull request #300 from Hunter275/primary-channel

Only allow channel index 0 to be PRIMARY
pull/302/head
Hunter Thornsberry 2 years ago
committed by GitHub
parent
commit
a6d161581f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      src/components/PageComponents/Channel.tsx

6
src/components/PageComponents/Channel.tsx

@ -111,10 +111,14 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
type: "select", type: "select",
name: "role", name: "role",
label: "Role", label: "Role",
disabled: channel.index === 0,
description: description:
"Device telemetry is sent over PRIMARY. Only one PRIMARY allowed", "Device telemetry is sent over PRIMARY. Only one PRIMARY allowed",
properties: { properties: {
enumValue: Protobuf.Channel.Channel_Role, enumValue:
channel.index === 0
? { PRIMARY: 1 }
: { DISABLED: 0, SECONDARY: 2 },
}, },
}, },
{ {

Loading…
Cancel
Save