Skip to content

Commit

Permalink
fix: [Bug] QSelect does not allow white space in filter #1684
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Mar 2, 2018
1 parent aff033c commit a88dd39
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/mixins/keyboard-selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ export default {
this.__keyboardMoveCursor(1, e)
break
case 13: // ENTER key
case 32: // SPACE key
if (this.$refs.popover.showing) {
if (key === 32 && this.inputEl) {
return
}
stopAndPrevent(e)
this.__keyboardSetCurrentSelection()
return
Expand Down

0 comments on commit a88dd39

Please sign in to comment.