Skip to content

Commit fb03fb9

Browse files
committed
fix(ui): use a v-number-input for colume input
Fixes #4387
1 parent 7754a5c commit fb03fb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/nodes-table/NodeDetails.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,11 @@
282282
sm="6"
283283
style="max-width: 300px; padding-top: 0"
284284
>
285-
<v-text-field
285+
<v-number-input
286286
label="Volume"
287287
hint="The volume (for the Sound Switch CC)"
288288
persistent-hint
289-
v-model.trim="options.volume"
289+
v-model.number="options.volume"
290290
>
291291
<template #append>
292292
<div
@@ -314,7 +314,7 @@
314314
</v-btn>
315315
</div>
316316
</template>
317-
</v-text-field>
317+
</v-number-input>
318318
</v-col>
319319
</v-row>
320320

0 commit comments

Comments
 (0)