Skip to content

Commit

Permalink
Select: fix undefined issue on select open
Browse files Browse the repository at this point in the history
  • Loading branch information
alansouzati committed Oct 13, 2016
1 parent 18b3e5f commit d71b59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default class Select extends Component {
});
if (this._searchRef) {
this._searchRef.focus();
this._searchRef.inputRef.select();
this._searchRef._inputRef.select();
}
} else if (dropActive && prevState.dropActive) {
this._drop.render(this._renderDrop());
Expand Down

0 comments on commit d71b59a

Please sign in to comment.