mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-30 23:25:29 +01:00
Fixed typo
This commit is contained in:
parent
b456b59c44
commit
3a0fc6eeac
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class NumberInput extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
onChangeRange = (e) => {
|
onChangeRange = (e) => {
|
||||||
const val = parseFloat(rawValue, 10);
|
const val = parseFloat(e.target.value, 10);
|
||||||
const step = this.props.rangeStep;
|
const step = this.props.rangeStep;
|
||||||
let out = val;
|
let out = val;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue