Merge pull request #6541 from KumJungMin/fix/issue-6539

fix(Select): resolve $el undefined error
pull/6768/head
Tuğçe Küçükoğlu 2024-11-12 09:36:48 +03:00 committed by GitHub
commit a48d2f44bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ export default {
this.scrollInView();
setTimeout(() => {
this.autoFilterFocus && focus(this.$refs.filterInput.$el);
this.autoFilterFocus && this.filter && focus(this.$refs.filterInput.$el);
}, 1);
},
onOverlayAfterEnter() {