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",
|
saveButtonBarState: "default",
|
||||||
services: []
|
services: []
|
||||||
};
|
};
|
||||||
storiesOf("Views / Webhook / Create webhook", module)
|
storiesOf("Views / Webhooks / Create webhook", module)
|
||||||
.addDecorator(Decorator)
|
.addDecorator(Decorator)
|
||||||
.add("default", () => <WebhookCreatePage {...props} />)
|
.add("default", () => <WebhookCreatePage {...props} />)
|
||||||
.add("loading", () => <WebhookCreatePage {...props} disabled={true} />)
|
.add("loading", () => <WebhookCreatePage {...props} disabled={true} />)
|
||||||
|
|
|
@ -18,7 +18,7 @@ const props: WebhooksDetailsPageProps = {
|
||||||
services: [],
|
services: [],
|
||||||
webhook: null
|
webhook: null
|
||||||
};
|
};
|
||||||
storiesOf("Views / Webhook / Webhook details", module)
|
storiesOf("Views / Webhooks / Webhook details", module)
|
||||||
.addDecorator(Decorator)
|
.addDecorator(Decorator)
|
||||||
.add("default", () => <WebhooksDetailsPage {...props} />)
|
.add("default", () => <WebhooksDetailsPage {...props} />)
|
||||||
.add("loading", () => (
|
.add("loading", () => (
|
||||||
|
|
Loading…
Reference in a new issue