-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
fix: overflow issue in tableSection #7377
Conversation
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.
PR Summary
This pull request addresses an overflow issue in the TableSection component, fixing the visibility problem for object fields described in issue #7327.
- Changed
overflow: hidden
tooverflow-y: auto
in StyledSection component to enable vertical scrolling - Modification allows all fields to be visible when content exceeds max-height
- Directly resolves issue Only the first 29 object fields are visible/editable #7327 where only the first 29 object fields were visible/editable
- Minor reordering of imports, which doesn't affect functionality
1 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings
packages/twenty-front/src/modules/ui/layout/table/components/TableSection.tsx
Outdated
Show resolved
Hide resolved
packages/twenty-front/src/modules/ui/layout/table/components/TableSection.tsx
Outdated
Show resolved
Hide resolved
packages/twenty-front/src/modules/ui/layout/table/components/TableSection.tsx
Outdated
Show resolved
Hide resolved
packages/twenty-front/src/modules/ui/layout/table/components/TableSection.tsx
Outdated
Show resolved
Hide resolved
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.
Left some comments!
this PR fixes twentyhq#7327 --------- Co-authored-by: ehconitin <[email protected]>
this PR fixes #7327