Skip to content

Commit

Permalink
Undo enum expanssion
Browse files Browse the repository at this point in the history
either way, TS enums are garbage so i am fine with this
  • Loading branch information
srimanachanta committed Jul 9, 2023
1 parent 0866a3a commit 3380246
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const endCalibration = () => {
label="Board Type"
tooltip="Calibration board pattern to use"
:select-cols="7"
:items="Object.values(CalibrationBoardTypes).filter(v => isNaN(Number(v)))"
:items="['Chessboard', 'Dotboard']"
:disabled="isCalibrating"
/>
<cv-number-input
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const saveGeneralSettings = () => {
label="IP Assignment Mode"
tooltip="DHCP will make the radio (router) automatically assign an IP address; this may result in an IP address that changes across reboots. Static IP assignment means that you pick the IP address and it won't change."
:input-cols="12-3"
:list="Object.values(NetworkConnectionType).filter(v => isNaN(Number(v)))"
:list="['DHCP','Static']"
/>
<cv-input
v-if="useSettingsStore().network.connectionType === NetworkConnectionType.Static"
Expand Down

0 comments on commit 3380246

Please sign in to comment.