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 700870f957
commit e7e821daee

View file

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