Fixed typo

This commit is contained in:
orangemug 2018-11-02 08:54:20 +00:00
parent b456b59c44
commit 3a0fc6eeac

View file

@ -69,7 +69,7 @@ class NumberInput extends React.Component {
}
onChangeRange = (e) => {
const val = parseFloat(rawValue, 10);
const val = parseFloat(e.target.value, 10);
const step = this.props.rangeStep;
let out = val;