[PE SSE mobile] Fix Bug 50792

This commit is contained in:
SergeyEzhin 2021-06-10 19:53:15 +03:00
parent b49af817e2
commit 80bbdf2828
2 changed files with 0 additions and 8 deletions

View file

@ -116,11 +116,7 @@ const PageLink = props => {
placeholder={_t.textLink}
value={link}
onChange={(event) => {
if (link.includes('https://')) {
setDisplay(link)
}
setLink(event.target.value)
setDisplay(event.target.value)
}}
/> :
<ListItem link={'/add-link-to/'} title={_t.textLinkTo} after={displayTo} routeProps={{

View file

@ -88,11 +88,7 @@ const AddLinkView = props => {
placeholder={_t.textLink}
value={link}
onChange={(event) => {
if (link.includes('https://')) {
setDisplayText(link)
}
setLink(event.target.value)
setDisplayText(event.target.value)
}}
className={isIos ? 'list-input-right' : ''}
/>