mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:41:21 +08:00
Merge pull request #17819 from GuilleDF/external-link-fix
fix(addon-docs): assume links starting with "https://" are external
This commit is contained in:
commit
83b957dfa8
@ -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}
|
||||
|
Loading…
x
Reference in New Issue
Block a user