fix: volume sliders
Fixed a typo that made a required property be undefined.
This commit is contained in:
parent
450076cfa4
commit
806a80a1e5
|
@ -90,7 +90,7 @@ async function edit(type) {
|
||||||
},
|
},
|
||||||
volume: {
|
volume: {
|
||||||
type: 'range',
|
type: 'range',
|
||||||
mim: 0,
|
min: 0,
|
||||||
max: 1,
|
max: 1,
|
||||||
step: 0.05,
|
step: 0.05,
|
||||||
textConverter: (v) => `${Math.floor(v * 100)}%`,
|
textConverter: (v) => `${Math.floor(v * 100)}%`,
|
||||||
|
|
Loading…
Reference in New Issue