Skip to content

Commit a2ade73

Browse files
authored
fix(insights): Fix issues table link (#103401)
Full pathname with trailing slash
1 parent 0b59b5a commit a2ade73

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

static/app/views/insights/pages/agents/components/issuesWidget.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,16 @@ export function IssuesWidget() {
7878
}
7979

8080
function IssuesVisualization({groups}: {groups: Group[]}) {
81+
const organization = useOrganization();
8182
return (
8283
<IssueList>
8384
{groups.map((issue, index) => (
8485
<IssueRow key={issue.id} isFirst={index === 0}>
8586
<PlatformIcon platform={issue.project.platform ?? ''} size={16} />
8687
<IssueTitle>
87-
<Link to={`/issues/${issue.id}`}>{issue.title}</Link>
88+
<Link to={`/organizations/${organization.slug}/issues/${issue.id}/`}>
89+
{issue.title}
90+
</Link>
8891
</IssueTitle>
8992
<IssueCount value={issue.count} />
9093
</IssueRow>

0 commit comments

Comments
 (0)