fix: volume sliders

Fixed a typo that made a required property be undefined.
This commit is contained in:
Johann150 2022-08-26 08:39:31 +02:00
parent 450076cfa4
commit 806a80a1e5
No known key found for this signature in database
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ async function edit(type) {
},
volume: {
type: 'range',
mim: 0,
min: 0,
max: 1,
step: 0.05,
textConverter: (v) => `${Math.floor(v * 100)}%`,