Skip to content

Commit

Permalink
fix typo in handleKeyDown method
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonchangxo committed Oct 23, 2017
1 parent 7523c20 commit a4be907
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 @@ -428,7 +428,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 a4be907

Please sign in to comment.