Merge pull request #17819 from GuilleDF/external-link-fix

fix(addon-docs): assume links starting with "https://" are external
This commit is contained in:
Kyle Gach 2022-04-05 09:58:28 -07:00 committed by GitHub
commit 83b957dfa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ export const AnchorMdx: FC<AnchorMdxProps> = (props) => {
}
// Links to other pages of SB should use the base URL of the top level iframe instead of the base URL of the preview iframe.
if (target !== '_blank') {
if (target !== '_blank' && !href.startsWith('https://')) {
return (
<A
href={href}