Merge pull request #48 from navedqb/fix--7185

fix: filter input reference check on overlay close
pull/7186/head
navedqb 2025-02-04 15:25:39 +05:30 committed by GitHub
commit 461ed10995
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -706,7 +706,9 @@ export default {
if (this.autoFilterFocus && this.filter && !this.editable) {
this.$nextTick(() => {
focus(this.$refs.filterInput.$el);
if (this.$refs.filterInput) {
focus(this.$refs.filterInput.$el);
}
});
}