Merge pull request #7186 from qburst/fix--7185
fix: filter input reference check on overlay closepull/7168/merge
commit
b2cd1f8501
|
@ -706,7 +706,9 @@ export default {
|
||||||
|
|
||||||
if (this.autoFilterFocus && this.filter && !this.editable) {
|
if (this.autoFilterFocus && this.filter && !this.editable) {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
focus(this.$refs.filterInput.$el);
|
if (this.$refs.filterInput) {
|
||||||
|
focus(this.$refs.filterInput.$el);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue