This repository was archived by the owner on Aug 6, 2026. It is now read-only.
fix(home): make board view columns scroll vertically - #3543
Merged
Conversation
|
😎 Merged directly without going through the merge queue, as the queue was empty and the PR was up to date with the target branch - details. |
|
React Doctor found no issues in the changed files. 🎉 Reviewed by React Doctor for commit |
The board view's ScrollArea components were missing height classes. Radix Themes' ScrollArea.Root has no intrinsic height and must be given an explicit sizing class to be bounded by its parent. Both ScrollAreas in HomeBoardView were rendered without one, so their viewports grew to fit content instead of clipping and scrolling. The surrounding flex/min-h-0/ flex-1 chain was threaded correctly right up to the parent div, but the constraint never reached the ScrollArea itself. Add `h-full min-h-0` to both the outer horizontal board scroller and the inner per-column vertical scroller, matching the pattern used by every other ScrollArea call site in the codebase (e.g. ChannelContextPanel, McpInstalledRail). Generated-By: PostHog Code Task-Id: c330bfa5-573d-4fcb-8a98-85258adb57da
adboio
force-pushed
the
posthog-code/fix-home-board-vertical-scroll
branch
from
July 17, 2026 14:03
5d87575 to
119e4e8
Compare
adboio
marked this pull request as ready for review
July 17, 2026 14:03
Contributor
There was a problem hiding this comment.
This review was skipped because it would exceed your organization's monthly flex usage limit. Raise the limit in billing settings or wait until the next billing period resets limits.
Contributor
Author
Merge activity
|
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

Problem
vertical scroll didn't work on home tab
Changes
fixed it
How did you test this?
manually
Automatic notifications
Created with PostHog Code