Skip to content

Commit

Permalink
Merge pull request #6541 from KumJungMin/fix/issue-6539
Browse files Browse the repository at this point in the history
fix(Select): resolve $el undefined error
  • Loading branch information
tugcekucukoglu authored Nov 12, 2024
2 parents 06db2ff + 849598f commit a48d2f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primevue/src/select/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit a48d2f4

Please sign in to comment.