Changed min/max zoom range step from 0.1 -> 1

This commit is contained in:
orangemug 2018-11-01 18:28:58 +00:00
parent fe0df2a4ef
commit e18d304313
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ class MaxZoomBlock extends React.Component {
>
<NumberInput
allowRange={true}
rangeStep={0.1}
rangeStep={1}
value={this.props.value}
onChange={this.props.onChange}
min={latest.layer.maxzoom.minimum}

View file

@ -17,7 +17,7 @@ class MinZoomBlock extends React.Component {
>
<NumberInput
allowRange={true}
rangeStep={0.1}
rangeStep={1}
value={this.props.value}
onChange={this.props.onChange}
min={latest.layer.minzoom.minimum}