Skip to content

Commit

Permalink
fix(ui): power level and measured power at 0 dbm limits (#3548)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Jan 23, 2024
1 parent 2b7d53c commit ae57c72
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/components/nodes-table/NodeDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<v-text-field
label="Normal Power Level"
v-model.number="node.powerlevel"
:min="-12.8"
:max="12.7"
:min="-10"
:max="20"
:step="0.1"
suffix="dBm"
type="number"
Expand All @@ -52,8 +52,8 @@
label="Measured output power at 0 dBm"
append-outer-icon="send"
v-model.number="node.measured0dBm"
:min="-12.8"
:max="12.7"
:min="-10"
:max="10"
:step="0.1"
suffix="dBm"
type="number"
Expand Down
12 changes: 6 additions & 6 deletions src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,10 @@
newZwave.rf.txPower.powerlevel
"
persistent-hint
:min="-12.8"
:max="12.7"
:min="-10"
:max="20"
:step="0.1"
hint="Power level in dBm. Min -12.8, Max 12.7"
hint="Power level in dBm. Min -10, Max +20"
suffix="dBm"
type="number"
:rules="[validTxPower]"
Expand All @@ -660,10 +660,10 @@
v-model.number="
newZwave.rf.txPower.measured0dBm
"
:min="-12.8"
:max="12.7"
:min="-10"
:max="10"
:step="0.1"
hint="Measured output power at 0 dBm in dBm. Min -12.8, Max 12.7"
hint="Measured output power at 0 dBm in dBm. Min -10, Max +10"
suffix="dBm"
type="number"
:rules="[validTxPower]"
Expand Down

0 comments on commit ae57c72

Please sign in to comment.