fix(sqllab): Remove redundant scrolling (#30500)

This commit is contained in:
JUST.in DO IT 2024-10-03 13:17:23 -07:00 committed by GitHub
parent b2fd56094f
commit 4dfee727e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -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}