We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 602bffb commit ad06e31Copy full SHA for ad06e31
src/components/Select.vue
@@ -506,7 +506,8 @@
506
507
/**
508
* When true, existing options will be filtered
509
- * by the search text.
+ * by the search text. Should not be used in conjunction
510
+ * with taggable.
511
* @type {Boolean}
512
*/
513
filterOptions: {
@@ -897,8 +898,8 @@
897
898
* @return {array}
899
900
filteredOptions() {
- if (this.filterOptions === false) {
901
- return this.mutableOptions
+ if (!this.filterOptions && !this.taggable) {
902
+ return this.mutableOptions.slice()
903
}
904
let options = this.mutableOptions.filter((option) => {
905
if (typeof option === 'object' && option.hasOwnProperty(this.label)) {
0 commit comments