fix: small breakdowns fixes (#6473)

* fix: members to member, no dependents to none

* feat: add fuzzy search to multiselect options search and projects dropdown

* fix: duplicate key
This commit is contained in:
Truman Gao
2026-06-22 20:40:53 +00:00
committed by GitHub
parent a747c2f290
commit 042a27a17c
4 changed files with 34 additions and 8 deletions
@@ -12,6 +12,7 @@
:placeholder="formatMessage(analyticsMessages.selectProjects)"
:no-options-message="noProjectsMessage"
:searchable="projectOptions.length > 6"
fuzzy-search
:max-tag-rows="1"
:trigger-class="analyticsQueryChipTriggerClass"
fit-content
@@ -211,6 +212,7 @@
:placeholder="formatMessage(analyticsMessages.selectProjects)"
:no-options-message="noProjectsMessage"
:searchable="projectOptions.length > 6"
fuzzy-search
:max-tag-rows="1"
checkbox-position="right"
show-selection-actions
@@ -545,7 +547,7 @@ function getProjectOption(
return {
value: project.id,
label: project.name,
searchTerms: groupTitle ? [groupTitle] : undefined,
searchTerms: [project.id, groupTitle].filter((term): term is string => Boolean(term)),
}
}