fix(ui): session tags issue type to be lowercase

This commit is contained in:
Shekar Siri 2025-01-02 11:24:15 +01:00
parent e5997c662f
commit d21ddb06de

View file

@ -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;