Skip to content

Commit

Permalink
Merge pull request #2088 from jasonchangxo/fix/handleKeyDown-typo
Browse files Browse the repository at this point in the history
fix typo in handleKeyDown method
  • Loading branch information
gwyneplaine authored Oct 23, 2017
2 parents b6fd3e7 + a4be907 commit 6568af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ class Select extends React.Component {
}
this.focusStartOption();
break;
case 46: // backspace
case 46: // delete
if (!this.state.inputValue && this.props.deleteRemoves) {
event.preventDefault();
this.popValue();
Expand Down

0 comments on commit 6568af0

Please sign in to comment.