diff --git a/code/frameworks/ember/template/cli/Button.stories.js b/code/frameworks/ember/template/cli/Button.stories.js index 1f8eb9fce3af..cd85527b2b77 100644 --- a/code/frameworks/ember/template/cli/Button.stories.js +++ b/code/frameworks/ember/template/cli/Button.stories.js @@ -6,7 +6,7 @@ import { linkTo } from '@storybook/addon-links'; export default { title: 'Example/Button', render: (args) => ({ - template: hbs``, + template: hbs``, context: args, }), argTypes: { @@ -27,13 +27,14 @@ export const Text = { export const Emoji = { args: { label: '😀 😎 👍 💯', + onClick: action('onClick'), }, }; export const TextWithAction = { render: () => ({ template: hbs` - `, @@ -50,12 +51,12 @@ export const TextWithAction = { export const ButtonWithLinkToAnotherStory = { render: () => ({ template: hbs` - `, context: { - onClick: linkTo('Example/Introduction'), + onClick: linkTo('Configure your project'), }, }), name: 'button with link to another story',