diff --git a/frontend/app/mstore/searchStore.ts b/frontend/app/mstore/searchStore.ts index a3e5a48ba..9f06f164d 100644 --- a/frontend/app/mstore/searchStore.ts +++ b/frontend/app/mstore/searchStore.ts @@ -329,6 +329,7 @@ class SearchStore { if (this.activeTags[0] && this.activeTags[0] !== 'all') { const tagFilter = filtersMap[FilterKey.ISSUE]; + tagFilter.type = tagFilter.type.toLowerCase(); tagFilter.value = [issues_types.find((i: any) => i.type === this.activeTags[0])?.type]; delete tagFilter.operatorOptions; delete tagFilter.options;