Skip to content

Commit

Permalink
fix: issue 181 (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
yotamberk authored Dec 28, 2019
1 parent 1f815ef commit 518d37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shared/Configurator.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ class Configurator {

let input = document.createElement('input');
input.className = 'vis-configuration vis-config-rangeinput';
input.value = range.value;
input.value = Number(range.value);

var me = this;
range.onchange = function () {input.value = this.value; me._update(Number(this.value), path);};
Expand Down

0 comments on commit 518d37f

Please sign in to comment.