Skip to content

Commit 7ad1b5f

Browse files
committed
disable inline for modal stories
1 parent 3d8db7c commit 7ad1b5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stories/ModalStories.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ storiesOf('Modal', module)
5656
[]
5757
}
5858
</Modal>
59-
))
59+
), { inline: false })
6060
.addWithInfo('Default', 'Default size modal dialog', () => (
6161
<Modal
6262
opened
@@ -85,7 +85,7 @@ storiesOf('Modal', module)
8585
<Button type='brand' label='Done' />
8686
</Footer>
8787
</Modal>
88-
))
88+
), { inline: false })
8989
.addWithInfo('Large', 'Large size modal dialog', () => (
9090
<Modal
9191
opened
@@ -115,7 +115,7 @@ storiesOf('Modal', module)
115115
<Button type='brand' label='Done' />
116116
</Footer>
117117
</Modal>
118-
))
118+
), { inline: false })
119119
.addWithInfo('Form elements', 'Modal with form elements in the content', () => (
120120
<Modal
121121
opened
@@ -157,5 +157,5 @@ storiesOf('Modal', module)
157157
<Button type='brand' label='Done' />
158158
</Footer>
159159
</Modal>
160-
))
160+
), { inline: false })
161161
;

0 commit comments

Comments
 (0)