mirror of
https://github.com/maputnik/editor.git
synced 2025-12-06 06:10:00 +00:00
Changed min/max zoom range step from 0.1 -> 1
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user