From 3a74243bdb575789e8c4ff1e066dc128bf065891 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Mon, 6 Sep 2021 11:59:26 +0300 Subject: [PATCH] Fixed #1496 - filterMatchMode option is ignored in Dropdown --- src/components/dropdown/Dropdown.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dropdown/Dropdown.vue b/src/components/dropdown/Dropdown.vue index 92d67f36c..fe27b1ec7 100755 --- a/src/components/dropdown/Dropdown.vue +++ b/src/components/dropdown/Dropdown.vue @@ -653,7 +653,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 {