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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
1 deletions
-
src/components/PageComponents/Channel.tsx
|
|
|
@ -111,10 +111,14 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => { |
|
|
|
type: "select", |
|
|
|
name: "role", |
|
|
|
label: "Role", |
|
|
|
disabled: channel.index === 0, |
|
|
|
description: |
|
|
|
"Device telemetry is sent over PRIMARY. Only one PRIMARY allowed", |
|
|
|
properties: { |
|
|
|
enumValue: Protobuf.Channel.Channel_Role, |
|
|
|
enumValue: |
|
|
|
channel.index === 0 |
|
|
|
? { PRIMARY: 1 } |
|
|
|
: { DISABLED: 0, SECONDARY: 2 }, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
|