From c18671c91c4ad7c7385c375768d7f4956ec7886c Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Wed, 19 Sep 2018 08:35:52 -0500 Subject: [PATCH] Fix undefined value --- manage/config-dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {