Skip to content

Commit

Permalink
fix a linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace Guo committed Jun 2, 2017
1 parent 04fb0e2 commit 566dee4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default class SelectControl extends React.PureComponent {
clearable: this.props.clearable,
isLoading: this.props.isLoading,
onChange: this.onChange,
optionRenderer: (opt) => opt.label,
optionRenderer: opt => opt.label,
};
// Tab, comma or Enter will trigger a new option created for FreeFormSelect
const selectWrap = this.props.freeForm ?
Expand Down

0 comments on commit 566dee4

Please sign in to comment.