fix(traces): align log table contents to start, regardless of height#112495
Merged
JoshuaKGoldberg merged 4 commits intomasterfrom Apr 9, 2026
Merged
fix(traces): align log table contents to start, regardless of height#112495JoshuaKGoldberg merged 4 commits intomasterfrom
JoshuaKGoldberg merged 4 commits intomasterfrom
Conversation
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 4dd6fd9. Configure here.
nsdeschenes
approved these changes
Apr 9, 2026
george-sentry
pushed a commit
that referenced
this pull request
Apr 9, 2026
…112495) The existing `flex: 1` on `TableContainer` makes the table contents grow to fill their vertical space. When there aren't enough logs to fill the screen, by default flex-expand vertically. This adds `align-contents: start` so they're shoved into the beginning instead. Example traces: * One log: sentry > `f4ce570538e746b4b3ea9a745c51bdce` * Three logs: sentry > `5eedb0ca1a5b43c18aaaeb9ad926f8ba` * Ten logs: sentry > `f8764c2c9c594eb6b47e4ee35b397277` * Hundreds of logs: sentry > `64dbb2f1952742a0941ece5188ae07d5` * Thousands of logs (thanks @k-fish!): sentry > `a7988807ac5d496bafb9611c5626538b` Fixes LOGS-677
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

The existing
flex: 1onTableContainermakes the table contents grow to fill their vertical space. When there aren't enough logs to fill the screen, by default flex-expand vertically. This addsalign-contents: startso they're shoved into the beginning instead.Example traces:
f4ce570538e746b4b3ea9a745c51bdce5eedb0ca1a5b43c18aaaeb9ad926f8baf8764c2c9c594eb6b47e4ee35b39727764dbb2f1952742a0941ece5188ae07d5a7988807ac5d496bafb9611c5626538bFixes LOGS-677