about summary refs log tree commit diff
path: root/storybook/stories/autosuggest_textarea.story.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'storybook/stories/autosuggest_textarea.story.jsx')
-rw-r--r--storybook/stories/autosuggest_textarea.story.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/storybook/stories/autosuggest_textarea.story.jsx b/storybook/stories/autosuggest_textarea.story.jsx
index 7d84ff1e1..72a4b525d 100644
--- a/storybook/stories/autosuggest_textarea.story.jsx
+++ b/storybook/stories/autosuggest_textarea.story.jsx
@@ -2,5 +2,5 @@ import { storiesOf } from '@kadira/storybook';
 import AutosuggestTextarea from '../../app/assets/javascripts/components/components/autosuggest_textarea.jsx'
 
 storiesOf('AutosuggestTextarea', module)
-  .add('default state', () => <AutosuggestTextarea />)
-  .add('with text', () => <AutosuggestTextarea value='Hello' />)
+  .add('default state', () => <AutosuggestTextarea value='' suggestions={[]} />)
+  .add('with text', () => <AutosuggestTextarea value='Hello' suggestions={[]} />)