From c5d3153e83607c9407a13a025df8301060f74d6c Mon Sep 17 00:00:00 2001 From: Chris Collins Date: Tue, 23 Jul 2024 04:14:50 -0400 Subject: [PATCH] fix(ui): scroll on the domain sidebar to show all domains (#10966) --- datahub-web-react/src/app/shared/sidebar/components.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/datahub-web-react/src/app/shared/sidebar/components.tsx b/datahub-web-react/src/app/shared/sidebar/components.tsx index c5e529bd3a91c..1b53843ee992f 100644 --- a/datahub-web-react/src/app/shared/sidebar/components.tsx +++ b/datahub-web-react/src/app/shared/sidebar/components.tsx @@ -8,6 +8,8 @@ export const SidebarWrapper = styled.div<{ width: number }>` width: ${(props) => props.width}px; min-width: ${(props) => props.width}px; display: ${(props) => (props.width ? 'block' : 'none')}; + display: flex; + flex-direction: column; `; export function RotatingTriangle({ isOpen, onClick }: { isOpen: boolean; onClick?: () => void }) {