diff --git a/manage/config-dialog.js b/manage/config-dialog.js index 9aa78911..efd720b0 100644 --- a/manage/config-dialog.js +++ b/manage/config-dialog.js @@ -314,7 +314,7 @@ function configDialog(style) { function updateVarOnChange() { if (this.type === 'range') { this.va.value = Number(this.value); - updateRangeCurrentValue(va, this.va.value); + updateRangeCurrentValue(this.va, this.va.value); } else if (this.type === 'number') { const value = Number(this.value); if (clampValue(value, this.va) === value) {