Browse Source
Merge pull request #218 from Hunter275/issue-217-hop-limit-above-7
hop limit is now a select instead of a number
pull/232/head
Ben Meadors
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
src/components/PageComponents/Config/LoRa.tsx
|
|
|
@ -36,10 +36,13 @@ export const LoRa = (): JSX.Element => { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
type: "number", |
|
|
|
type: "select", |
|
|
|
name: "hopLimit", |
|
|
|
label: "Hop Limit", |
|
|
|
description: "Maximum number of hops", |
|
|
|
properties: { |
|
|
|
enumValue: {1:1, 2:2, 3:3, 4:4, 5:5, 6:6, 7:7} |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
type: "number", |
|
|
|
|