Don't set value on all types of input
This commit is contained in:
parent
37ad749a62
commit
a2bbc8da3a
|
@ -328,14 +328,15 @@ function configDialog(style) {
|
|||
}
|
||||
} else if (va.type === 'checkbox') {
|
||||
va.input.checked = Number(value);
|
||||
}
|
||||
if (va.type === 'range') {
|
||||
} else if (va.type === 'range') {
|
||||
const span = $('.current-value', va.input.parentNode);
|
||||
va.input.value = value;
|
||||
if (span) {
|
||||
span.textContent = value;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
va.input.value = value;
|
||||
}
|
||||
if (!prefs.get('config.autosave')) {
|
||||
renderValueState(va);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user