Fix storybook names
This commit is contained in:
parent
57a3ed88ae
commit
1ec53b49b5
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ const props: WebhookCreatePageProps = {
|
|||
saveButtonBarState: "default",
|
||||
services: []
|
||||
};
|
||||
storiesOf("Views / Webhook / Create webhook", module)
|
||||
storiesOf("Views / Webhooks / Create webhook", module)
|
||||
.addDecorator(Decorator)
|
||||
.add("default", () => <WebhookCreatePage {...props} />)
|
||||
.add("loading", () => <WebhookCreatePage {...props} disabled={true} />)
|
||||
|
|
|
@ -18,7 +18,7 @@ const props: WebhooksDetailsPageProps = {
|
|||
services: [],
|
||||
webhook: null
|
||||
};
|
||||
storiesOf("Views / Webhook / Webhook details", module)
|
||||
storiesOf("Views / Webhooks / Webhook details", module)
|
||||
.addDecorator(Decorator)
|
||||
.add("default", () => <WebhooksDetailsPage {...props} />)
|
||||
.add("loading", () => (
|
||||
|
|
Loading…
Reference in a new issue