From 5fed6185286355beaf7dbf2bc542b0371cc0fef9 Mon Sep 17 00:00:00 2001 From: Lucas Bordeau Date: Fri, 13 Jun 2025 11:52:20 +0200 Subject: [PATCH] Fixed overflow scroll bar in dropdowns (#12587) Following-up PR https://github.com/twentyhq/twenty/pull/12547 which introduced a last minute fix that broke the overflow UI. Before : image After : image --- .../layout/dropdown/components/DropdownMenuItemsContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuItemsContainer.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuItemsContainer.tsx index bb38efff7..d86b58029 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuItemsContainer.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuItemsContainer.tsx @@ -27,7 +27,7 @@ const StyledScrollableContainer = styled.div<{ maxHeight?: number }>` max-height: ${({ maxHeight }) => (maxHeight ? `${maxHeight}px` : 'none')}; width: 100%; - overflow-y: scroll; + overflow-y: auto; `; const StyledInternalContainer = styled.div`