Skip to content

Commit

Permalink
Select: fix select filterable bug (ElemeFE#17494)
Browse files Browse the repository at this point in the history
  • Loading branch information
profore authored and abigail-0111 committed Dec 21, 2021
1 parent be74f3d commit 9e5bd1c
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 9e5bd1c

Please sign in to comment.