Skip to content

Commit

Permalink
Merge pull request #2308 from tugcekucukoglu/filter
Browse files Browse the repository at this point in the history
Fixed #2162 - filterMatchMode option is ignored in MultiSelect
  • Loading branch information
tugcekucukoglu committed Mar 14, 2022
2 parents 369239d + 66018d7 commit 7642624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/multiselect/MultiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ export default {
return filteredGroups
}
else {
return FilterService.filter(this.options, this.searchFields, this.filterValue, 'contains', this.filterLocale);
return FilterService.filter(this.options, this.searchFields, this.filterValue, this.filterMatchMode, this.filterLocale);
}
}
else {
Expand Down

0 comments on commit 7642624

Please sign in to comment.