Add missing props in stories (#6353)

Add missing props in stories
This commit is contained in:
Norbert de Langen 2019-04-26 12:55:17 +02:00 committed by GitHub
commit 6b4ff39995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,11 +16,19 @@ export const workingStory = () => (
src="/iframe.html?id=ui-panel--default"
allowFullScreen
style={style}
scale={1.0}
/>
);
export const missingStory = () => (
<IFrame id="iframe" title="Missing" src="/iframe.html?id=missing" allowFullScreen style={style} />
<IFrame
id="iframe"
title="Missing"
src="/iframe.html?id=missing"
allowFullScreen
style={style}
scale={1.0}
/>
);
export const errorStory = () => (
@ -30,6 +38,7 @@ export const errorStory = () => (
src="/iframe.html?id=core-errors--story-throws-exception"
allowFullScreen
style={style}
scale={1.0}
/>
);
// We need to disable this one in Chromatic because the screenshot includes the uploaded URL sadly: