Skip to content

Commit

Permalink
Select: fix select filterable bug (#17494)
Browse files Browse the repository at this point in the history
  • Loading branch information
profore committed Jul 29, 2021
1 parent 19f25ba commit 4943867
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/select/src/select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,12 @@
:tabindex="(multiple && filterable) ? '-1' : null"
@focus="handleFocus"
@blur="handleBlur"
@keyup.native="debouncedOnInputChange"
@input="debouncedOnInputChange"
@keydown.native.down.stop.prevent="navigateOptions('next')"
@keydown.native.up.stop.prevent="navigateOptions('prev')"
@keydown.native.enter.prevent="selectOption"
@keydown.native.esc.stop.prevent="visible = false"
@keydown.native.tab="visible = false"
@paste.native="debouncedOnInputChange"
@mouseenter.native="inputHovering = true"
@mouseleave.native="inputHovering = false">
<template slot="prefix" v-if="$slots.prefix">
Expand Down

0 comments on commit 4943867

Please sign in to comment.