mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
FIX #13630
This commit is contained in:
parent
4a0374085b
commit
d74daf18e5
@ -95,7 +95,7 @@ export const AnchorMdx: FC<AnchorMdxProps> = (props) => {
|
||||
href={href}
|
||||
onClick={(event: SyntheticEvent) => {
|
||||
event.preventDefault();
|
||||
navigate(href);
|
||||
navigate(event.currentTarget.getAttribute('href'));
|
||||
}}
|
||||
target={target}
|
||||
{...rest}
|
||||
|
@ -145,6 +145,8 @@ Table with icons
|
||||
|
||||
[link to in page anchor](#h1-heading)
|
||||
|
||||
[link to another story (docs, without prefix)](/docs/addons-docs-docs-only--page)
|
||||
|
||||
[link to another story (docs)](?path=/docs/addons-docs-docs-only--page)
|
||||
|
||||
[link to another story (canvas)](?path=/story/addons-docs-buttongroup--basic)
|
||||
|
@ -73,7 +73,6 @@ export const Pre = styled.pre<{}>(withReset, withMargin, ({ theme }) => ({
|
||||
const Link: FunctionComponent<any> = ({ href: input, children, ...props }) => {
|
||||
const isStorybookPath = /^\//.test(input);
|
||||
const isAnchorUrl = /^#.*/.test(input);
|
||||
|
||||
const href = isStorybookPath ? `?path=${input}` : input;
|
||||
const target = isAnchorUrl ? '_self' : '_top';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user