Retry "external_api: fixed using deeplinks"
Set target='_top' inside anchor. Courtesy of #6700 Follow-up to: #6784
This commit is contained in:
parent
75c836c70c
commit
8c30e43b5f
|
@ -125,7 +125,8 @@ class DeepLinkingMobilePage extends Component<Props> {
|
|||
<a
|
||||
{ ...onOpenLinkProperties }
|
||||
href = { this._generateDownloadURL() }
|
||||
onClick = { this._onDownloadApp }>
|
||||
onClick = { this._onDownloadApp }
|
||||
target = '_top'>
|
||||
<button className = { downloadButtonClassName }>
|
||||
{ t(`${_TNS}.downloadApp`) }
|
||||
</button>
|
||||
|
@ -134,7 +135,8 @@ class DeepLinkingMobilePage extends Component<Props> {
|
|||
{ ...onOpenLinkProperties }
|
||||
className = { `${_SNS}__href` }
|
||||
href = { generateDeepLinkingURL() }
|
||||
onClick = { this._onOpenApp }>
|
||||
onClick = { this._onOpenApp }
|
||||
target = '_top'>
|
||||
{/* <button className = { `${_SNS}__button` }> */}
|
||||
{ t(`${_TNS}.openApp`) }
|
||||
{/* </button> */}
|
||||
|
|
Loading…
Reference in New Issue