mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
fix: volume sliders
Fixed a typo that made a required property be undefined.
This commit is contained in:
parent
926139c232
commit
bb826ff54d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue