Skip to content

Commit

Permalink
Compile standalone demo
Browse files Browse the repository at this point in the history
  • Loading branch information
moroshko committed Jun 26, 2017
1 parent bf5adbd commit 4631266
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Autosuggest.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,10 @@ export default class Autosuggest extends Component {
break;

case 'Enter': {
// Ignore enter of combined character
if (event.keyCode === 229) break;
// See #388
if (event.keyCode === 229) {
break;
}

const highlightedSuggestion = this.getHighlightedSuggestion();

Expand Down

0 comments on commit 4631266

Please sign in to comment.