Merge pull request #48 from navedqb/fix--7185
fix: filter input reference check on overlay closepull/7186/head
commit
461ed10995
|
@ -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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue