diff --git a/frontend/app/mstore/searchStore.ts b/frontend/app/mstore/searchStore.ts index f8767e97f..0ff942d43 100644 --- a/frontend/app/mstore/searchStore.ts +++ b/frontend/app/mstore/searchStore.ts @@ -332,6 +332,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;