-
Notifications
You must be signed in to change notification settings - Fork 4
Release stats: long issue titles overflow the Top Issues card #336
Description
Summary
On the release statistics page (/releases/:version), the Top Issues in this Release list can render issue titles that overflow the card horizontally (e.g. very long file paths or unbroken strings). The text extends past the card boundary and can obscure the event count on the right.
Steps to reproduce
- Open a release that has a top issue whose title is a long single-line string (e.g. Android-style paths like
/data/user/0/.../frame_1.mp4 -> ...). - Scroll to Top Issues in this Release.
Expected
The title should stay within the card: wrap to multiple lines, or truncate with an ellipsis, and the events count on the right should remain visible and aligned.
Actual
The title renders on one line and overflows the card to the right.
Notes / likely fix
The UI is implemented in dashboard/src/routes/releases.$version.tsx (Top Issues list). Titles already use truncate, but in a flex row, truncation often needs min-w-0 / overflow-hidden on the correct flex children (and sometimes flex-1 or max-w-* on the text column) so the browser can compute a bounded width. Consider verifying the flex chain from the row Link down to the title div.
Screenshot
