Merge pull request #7186 from qburst/fix--7185

fix: filter input reference check on overlay close
pull/7168/merge
Tuğçe Küçükoğlu 2025-02-04 13:11:20 +03:00 committed by GitHub
commit b2cd1f8501
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);
}
});
}