Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links that are not working with plain left click #6970

Merged
merged 5 commits into from Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions addons/notes/src/Panel.tsx
Expand Up @@ -149,6 +149,8 @@ const NotesPanel = ({ active }: Props) => {
href="https://github.com/storybooks/storybook/tree/master/addons/notes"
target="_blank"
withArrow
secondary
cancel={false}
>
document components in Markdown
</Link>
Expand Down
5 changes: 4 additions & 1 deletion lib/components/src/placeholder/placeholder.stories.tsx
Expand Up @@ -15,7 +15,10 @@ export const twoChildren = () => (
<Placeholder>
<Fragment key="title">This has two children, the first bold</Fragment>
<Fragment key="desc">
The second normal weight. Here's a <Link href="https://storybook.js.org">link</Link>
The second normal weight. Here's a{' '}
<Link href="https://storybook.js.org" secondary cancel={false}>
link
</Link>
</Fragment>
</Placeholder>
);
2 changes: 2 additions & 0 deletions lib/ui/src/settings/about.js
Expand Up @@ -168,6 +168,8 @@ const AboutScreen = ({ latest, current, onClose }) => {
href="https://github.com/storybooks/storybook/releases"
target="_blank"
withArrow
secondary
cancel={false}
>
Check Storybook's release history
</Link>
Expand Down