mirror of https://github.com/ElemeFE/element
Select: fix 第一次输入值与第二次输入值完全时一样无法触发重新筛选 bug
parent
473ef53f93
commit
a3fb02fe7f
|
@ -459,7 +459,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleQueryChange(val) {
|
handleQueryChange(val) {
|
||||||
if (this.previousQuery === val || this.isOnComposition) return;
|
if (this.isOnComposition) return;
|
||||||
if (
|
if (
|
||||||
this.previousQuery === null &&
|
this.previousQuery === null &&
|
||||||
(typeof this.filterMethod === 'function' || typeof this.remoteMethod === 'function')
|
(typeof this.filterMethod === 'function' || typeof this.remoteMethod === 'function')
|
||||||
|
|
Loading…
Reference in New Issue