-
Notifications
You must be signed in to change notification settings - Fork 3.2k
UI Scroll Issue Fix #14484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
UI Scroll Issue Fix #14484
Conversation
Bundle ReportChanges will increase total bundle size by 584 bytes (0.0%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: datahub-react-web-esmAssets Changed:
Files in
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, thanks a lot for raising the detailed bug report & solid PR on this critical issue!
I was wondering if we could simplify the fix a bit — for example, adding a height
in ResultContainer
in EmbeddedListSearchResults.tsx
like:
const ResultContainer = styled.div`
...
height: calc(80vh - 60px);
...
`;
Could you check if this would cover the cases you mentioned? (pinging @jayacryl for second opinion here)
Also, looks like some lint is failing — you can try running:
./gradlew :datahub-web-react:yarnLintFix && ./gradlew :datahub-web-react:yarnLint
which should auto-fix most of them.
Hi Andrew! Thanks for sharing this. What I recommend is doing something where the
You may have to experiment with getting the right styles on the parent and child Generally Claude is really good at giving you hints of what might need to be changed to get this right - would recommend x-checking with claude! |
4b424e0
to
88064ba
Compare
Hello @jayacryl and @yoonhyejin, Why the PR was closed? Coming back to our fixes, what changed? Blocker encountered? FYI
@yoonhyejin I have ran ./gradlew :datahub-web-react:yarnLintFix && ./gradlew :datahub-web-react:yarnLint and it seems no changes have been made on my codebase! Kindly take a look and let me know of any changes! |
This looks good Andrew, much appreciated! I have tested locally and it seems good. One last request and we can merge:
Since there is a change on a broadly used file - re route tabs, we just want to be sensitive about regressions. Also do you know why the smoke tests might be failing? We'll need to confirm that the smoke failures are not related to this change. |
What was the Issue?
There was a scroll Issue in OwnerOf Page where if the content height was too long, the scroll bar is hidden and pagination is below and we cannot scroll below to see the content
What Did I Do?
Fixed this issue by calculating the height dynamically and fixing it for the content
Screenshots for the issue:

The Bug:
The Fix:

Kindly take a look and let me know of any changes!
Thanks,
Andrews!