Skip to content

Commit

Permalink
fix(ui) Fix scroll on the domain sidebar to show all domains
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscollins3456 committed Jul 22, 2024
1 parent 30e9cfd commit e65facc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions datahub-web-react/src/app/shared/sidebar/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) {
Expand Down

0 comments on commit e65facc

Please sign in to comment.