This commit is contained in:
Norbert de Langen 2021-03-25 10:01:17 +01:00
parent 4a0374085b
commit d74daf18e5
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
3 changed files with 3 additions and 2 deletions

View File

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

View File

@ -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)

View File

@ -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';