Skip to content

Commit

Permalink
fix(rr6): Use query for feedbackSlug (#76968)
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser authored Sep 4, 2024
1 parent b6b3fc0 commit 038e7af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion static/app/views/alerts/rules/issue/details/issuesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ function AlertRuleIssuesList({project, rule, period, start, end, utc, cursor}: P
const path =
(issue as unknown as FeedbackIssue).issueType === 'feedback'
? {
pathname: `/organizations/${organization.slug}/feedback/?feedbackSlug=${issue.project.slug}%3A${issue.id}`,
pathname: `/organizations/${organization.slug}/feedback/`,
query: {feedbackSlug: `${issue.project.slug}:${issue.id}`},
}
: {
pathname: `/organizations/${organization.slug}/issues/${issue.id}/${
Expand Down

0 comments on commit 038e7af

Please sign in to comment.