Skip to content

Commit

Permalink
fix(query-builder): Exclude environment tag from results (#73586)
Browse files Browse the repository at this point in the history
  • Loading branch information
malwilley authored Jul 1, 2024
1 parent eacf691 commit b97339b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion static/app/views/issueList/searchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ const getSupportedTags = (supportedTags: TagCollection): TagCollection => {
};

const getFilterKeySections = (tags: TagCollection): FilterKeySection[] => {
const allTags: Tag[] = Object.values(tags);
const allTags: Tag[] = Object.values(tags).filter(
tag => !EXCLUDED_TAGS.includes(tag.key)
);
const eventTags = orderBy(
allTags.filter(tag => tag.kind === FieldKind.TAG),
['totalValues', 'key'],
Expand Down

0 comments on commit b97339b

Please sign in to comment.