[SSE mobile] Fix Bug 52266
This commit is contained in:
parent
a160b89aba
commit
82b75a25b9
|
@ -816,7 +816,7 @@ const PageVerticalAxis = props => {
|
|||
<ListInput
|
||||
label={_t.textMinimumValue}
|
||||
type="number"
|
||||
placeholder="Auto"
|
||||
placeholder={_t.textAuto}
|
||||
value={minValue}
|
||||
onChange={e => props.onVerAxisMinValue(e.target.value)}
|
||||
onInput={e => setMinValue(e.target.value)}
|
||||
|
@ -826,7 +826,7 @@ const PageVerticalAxis = props => {
|
|||
<ListInput
|
||||
label={_t.textMaximumValue}
|
||||
type="number"
|
||||
placeholder="Auto"
|
||||
placeholder={_t.textAuto}
|
||||
value={maxValue}
|
||||
onChange={e => props.onVerAxisMaxValue(e.target.value)}
|
||||
onInput={e => setMaxValue(e.target.value)}
|
||||
|
|
Loading…
Reference in a new issue