Skip to content

Commit

Permalink
fix(sqllab): Remove redundant scrolling (apache#30500)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpark authored Oct 3, 2024
1 parent b2fd560 commit 4dfee72
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion superset-frontend/src/components/ResizableSidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ const ResizableSidebar: FC<Props> = ({
<ResizableWrapper>
<Resizable
enable={{ right: enable }}
handleClasses={{ right: 'sidebar-resizer' }}
handleClasses={{
right: 'sidebar-resizer',
bottom: 'hidden',
bottomRight: 'hidden',
bottomLeft: 'hidden',
}}
size={{ width, height: '100%' }}
minWidth={minWidth}
maxWidth={maxWidth}
Expand Down

0 comments on commit 4dfee72

Please sign in to comment.