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
parent
commit
de30cf9248
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      src/components/PageComponents/Config/LoRa.tsx

5
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",

Loading…
Cancel
Save