Skip to content

Commit 7eb2f1d

Browse files
authored
fix(discover): Wrap issue fields with link to issue detail (getsentry#41001)
Issue field on field renderer wasn't being wrapped with the link to the issue detail if the quick-context flag wasn't enabled. Fixed so that it's clickable again. Will add a test in a follow up
1 parent 1ade65c commit 7eb2f1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

static/app/utils/discover/fieldRenderers.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,9 @@ const SPECIAL_FIELDS: SpecialFields = {
487487
</StyledLink>
488488
</QuickContextHoverWrapper>
489489
) : (
490-
<OverflowFieldShortId shortId={`${data.issue}`} />
490+
<StyledLink to={target} aria-label={issueID}>
491+
<OverflowFieldShortId shortId={`${data.issue}`} />
492+
</StyledLink>
491493
)}
492494
</Container>
493495
);

0 commit comments

Comments
 (0)