From d21ddb06de9cfad69ef5c365991abbf066ce56cf Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 2 Jan 2025 11:24:15 +0100 Subject: [PATCH] fix(ui): session tags issue type to be lowercase --- frontend/app/mstore/searchStore.ts | 1 + 1 file changed, 1 insertion(+) 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;