Retry "external_api: fixed using deeplinks"

Set target='_top' inside anchor.

Courtesy of #6700
Follow-up to: #6784
This commit is contained in:
Suguru Hirahara 2020-05-20 15:32:53 +09:00 committed by Jaya Allamsetty
parent 75c836c70c
commit 8c30e43b5f
1 changed files with 4 additions and 2 deletions

View File

@ -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> */}