fix(issue-details): Preserve page filters when searching issues by tag value#109102
Merged
fix(issue-details): Preserve page filters when searching issues by tag value#109102
Conversation
…g value The "Search issues with this tag value" and related navigation links in the tag details drawer and event tags tree were not carrying over page filter parameters (project, environment, date range) from the current URL. This caused the issues list to fall back to default or last-saved project selection instead of staying on the current project. Use extractSelectionParameters to spread global page filter params into the navigation query, matching the pattern already used in groupTagValues.tsx and across the codebase. Co-Authored-By: Claude <noreply@anthropic.com>
scttcper
approved these changes
Feb 23, 2026
mchen-sentry
pushed a commit
that referenced
this pull request
Feb 24, 2026
…g value (#109102) The "Search issues with this tag value" and related navigation links in the tag details drawer and event tags tree row dropdown were constructing URLs without carrying over page filter parameters (project, environment, date range) from the current URL. When a user clicked these links, the issues list page would fall back to the default or last-saved project selection instead of staying on the project they were viewing. This uses `extractSelectionParameters(location.query)` to spread global page filter params into the navigation query objects in both `tagDetailsDrawerContent.tsx` and `eventTagsTreeRow.tsx`, matching the pattern already established in `groupTagValues.tsx` and used widely across the codebase for cross-page navigation. Fixes ID-1361 fixes #108799 Co-authored-by: Claude <noreply@anthropic.com>
wedamija
pushed a commit
that referenced
this pull request
Feb 24, 2026
…g value (#109102) The "Search issues with this tag value" and related navigation links in the tag details drawer and event tags tree row dropdown were constructing URLs without carrying over page filter parameters (project, environment, date range) from the current URL. When a user clicked these links, the issues list page would fall back to the default or last-saved project selection instead of staying on the project they were viewing. This uses `extractSelectionParameters(location.query)` to spread global page filter params into the navigation query objects in both `tagDetailsDrawerContent.tsx` and `eventTagsTreeRow.tsx`, matching the pattern already established in `groupTagValues.tsx` and used widely across the codebase for cross-page navigation. Fixes ID-1361 fixes #108799 Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "Search issues with this tag value" and related navigation links in
the tag details drawer and event tags tree row dropdown were constructing
URLs without carrying over page filter parameters (project, environment,
date range) from the current URL. When a user clicked these links, the
issues list page would fall back to the default or last-saved project
selection instead of staying on the project they were viewing.
This uses
extractSelectionParameters(location.query)to spread globalpage filter params into the navigation query objects in both
tagDetailsDrawerContent.tsxandeventTagsTreeRow.tsx, matching thepattern already established in
groupTagValues.tsxand used widelyacross the codebase for cross-page navigation.
Fixes ID-1361
fixes #108799