Skip to content

Commit

Permalink
docs(Dropdown): use empty initial value
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason committed Jun 5, 2016
1 parent 4f63647 commit 02e7aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/app/Examples/modules/Dropdown/Content/AsyncOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const getOptions = () => _.times(5, () => {
export default class DropdownAsyncOptions extends Component {
componentWillMount() {
const options = getOptions()
const value = [_.sample(options).value]
const value = []
this.setState({ isFetching: false, search: true, multiple: true, value, options })
}

Expand Down

0 comments on commit 02e7aa3

Please sign in to comment.