webapp: Fix data type for all range inputs
This commit is contained in:
parent
e37baedddb
commit
e29ac4f171
@ -202,7 +202,7 @@
|
|||||||
min="0"
|
min="0"
|
||||||
max="100"
|
max="100"
|
||||||
id="inputDisplayContrast"
|
id="inputDisplayContrast"
|
||||||
v-model="deviceConfigList.display.contrast"
|
v-model.number="deviceConfigList.display.contrast"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -239,7 +239,7 @@
|
|||||||
min="0"
|
min="0"
|
||||||
max="100"
|
max="100"
|
||||||
:id="getLedIdFromNumber(index)"
|
:id="getLedIdFromNumber(index)"
|
||||||
v-model="ledSetting.brightness"
|
v-model.number="ledSetting.brightness"
|
||||||
@change="syncSliders"
|
@change="syncSliders"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -89,7 +89,7 @@
|
|||||||
<input
|
<input
|
||||||
type="range"
|
type="range"
|
||||||
class="form-control form-range"
|
class="form-control form-range"
|
||||||
v-model="dtuConfigList.cmt_frequency"
|
v-model.number="dtuConfigList.cmt_frequency"
|
||||||
:min="cmtMinFrequency"
|
:min="cmtMinFrequency"
|
||||||
:max="cmtMaxFrequency"
|
:max="cmtMaxFrequency"
|
||||||
:step="dtuConfigList.cmt_chan_width"
|
:step="dtuConfigList.cmt_chan_width"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user