mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
always call the filter callback
This commit is contained in:
@@ -1073,7 +1073,8 @@
|
|||||||
return optionList;
|
return optionList;
|
||||||
}
|
}
|
||||||
|
|
||||||
let options = this.search.length ? this.filter(optionList, this.search, this) : optionList;
|
let options = this.filter(optionList, this.search, this);
|
||||||
|
|
||||||
if (this.taggable && this.search.length && !this.optionExists(this.search)) {
|
if (this.taggable && this.search.length && !this.optionExists(this.search)) {
|
||||||
options.unshift(this.search)
|
options.unshift(this.search)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user