[SSE mobile] Fix Bug 53158

This commit is contained in:
SergeyEzhin 2021-10-27 23:31:04 +04:00
parent 16bc4c07e7
commit 288ae7d25c

View file

@ -138,7 +138,8 @@ const EditLink = props => {
placeholder={_t.textRequired} placeholder={_t.textRequired}
value={range} value={range}
onChange={(event) => {setRange(event.target.value)}} onChange={(event) => {setRange(event.target.value)}}
className={[isIos ? 'list-input-right' : '', curSheet === '' && 'disabled'].join(' ')} disabled={curSheet === '' && 'disabled'}
className={isIos ? 'list-input-right' : ''}
/> />
} }
<ListInput label={_t.textDisplay} <ListInput label={_t.textDisplay}