Skip to content

Commit

Permalink
Fixed #2162 - filterMatchMode option is ignored in MultiSelect
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Mar 14, 2022
1 parent 369239d commit 66018d7
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 66018d7

Please sign in to comment.