On a waterfall item with errors, clicking the error count takes the user to the errors overview filtered by the trace/transaction.
Clicking this should navigate to the overview but causes a full page reload. This is because the ErrorCount component has an onClick handler that does a stopPropagation, and the WaterfallItem container also does stopPropagation.
These stopPropagation calls are there to stop the flyout from opening when navigating, but they also cause the handlers from RedirectAppLinks to not be called.
Make it so the flyout still opens when needed and the navigation to the error overview happens without a full page reload.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
On a waterfall item with errors, clicking the error count takes the user to the errors overview filtered by the trace/transaction.
Clicking this should navigate to the overview but causes a full page reload. This is because the
ErrorCount
component has anonClick
handler that does astopPropagation
, and theWaterfallItem
container also doesstopPropagation
.These
stopPropagation
calls are there to stop the flyout from opening when navigating, but they also cause the handlers fromRedirectAppLinks
to not be called.Make it so the flyout still opens when needed and the navigation to the error overview happens without a full page reload.