Fixed #6420
parent
798fedd2a7
commit
3e93ac1d80
|
@ -705,9 +705,13 @@ export default {
|
||||||
this.unbindScrollListener();
|
this.unbindScrollListener();
|
||||||
this.unbindResizeListener();
|
this.unbindResizeListener();
|
||||||
|
|
||||||
this.autoFilterFocus && focus(this.$refs.focusInput);
|
if (this.autoFilterFocus && this.filter) {
|
||||||
this.$emit('hide');
|
this.$nextTick(() => {
|
||||||
|
focus(this.$refs.filterInput.$el);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$emit('hide');
|
||||||
this.overlay = null;
|
this.overlay = null;
|
||||||
},
|
},
|
||||||
onOverlayAfterLeave(el) {
|
onOverlayAfterLeave(el) {
|
||||||
|
|
Loading…
Reference in New Issue