From e7e821daee6491f1ad0e2233b5aabf7f51b0e693 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 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;