From 288ae7d25cb0c0feada2b4eda92806551561d746 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 27 Oct 2021 23:31:04 +0400 Subject: [PATCH] [SSE mobile] Fix Bug 53158 --- apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx index 517c3a835..9d09846b1 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx @@ -138,7 +138,8 @@ const EditLink = props => { placeholder={_t.textRequired} value={range} onChange={(event) => {setRange(event.target.value)}} - className={[isIos ? 'list-input-right' : '', curSheet === '' && 'disabled'].join(' ')} + disabled={curSheet === '' && 'disabled'} + className={isIos ? 'list-input-right' : ''} /> }