Browse Source

- hop limit is now a select instead of a number

pull/218/head
Hunter Thornsberry 2 years ago
parent
commit
bc27d3d87b
  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