Skip to content

Conversation

@nsdeschenes
Copy link
Contributor

@nsdeschenes nsdeschenes commented Dec 30, 2025

This PR updates the linking from the spans and traces table from the Explore -> Traces page. If the span or trace is older than 30 days we remove the link, and add a tooltip with a link to similar spans or traces.

Ticket: EXP-646

@linear
Copy link

linear bot commented Dec 30, 2025

@github-actions github-actions bot added the Scope: Frontend Automatically applied to PRs that change frontend components label Dec 30, 2025
@nsdeschenes
Copy link
Contributor Author

@sentry review

@nsdeschenes
Copy link
Contributor Author

@sentry review

@nsdeschenes nsdeschenes marked this pull request as ready for review December 30, 2025 19:35
@nsdeschenes nsdeschenes requested a review from a team as a code owner December 30, 2025 19:35
<Tooltip
showUnderline
isHoverable
disabled={!queryString}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tooltip disabled check always evaluates to false

The disabled={!queryString} check never works as intended because queryString is a MutableSearch object, not a string. Objects are always truthy in JavaScript, so !queryString is always false. The comparable implementation in tracesTable/fieldRenderers.tsx correctly uses search.formatString() to get a string before the check. The intended behavior to disable the tooltip when no meaningful query filters exist never triggers.

Additional Locations (1)

Fix in Cursor Fix in Web

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Scope: Frontend Automatically applied to PRs that change frontend components

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants