Skip to content

Commit

Permalink
Improve default placeholder text on SelectControl (#4442)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Feb 16, 2018
1 parent dc48673 commit 88e91e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default class SelectControl extends React.PureComponent {
}
render() {
// Tab, comma or Enter will trigger a new option created for FreeFormSelect
const placeholder = this.props.placeholder || t('Select %s', this.state.options.length);
const placeholder = this.props.placeholder || t('%s option(s)', this.state.options.length);
const selectProps = {
multi: this.props.multi,
name: `select-${this.props.name}`,
Expand Down

0 comments on commit 88e91e6

Please sign in to comment.