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