fix(sqllab): Remove redundant scrolling (#30500)
This commit is contained in:
parent
b2fd56094f
commit
4dfee727e8
|
|
@ -67,7 +67,12 @@ const ResizableSidebar: FC<Props> = ({
|
||||||
<ResizableWrapper>
|
<ResizableWrapper>
|
||||||
<Resizable
|
<Resizable
|
||||||
enable={{ right: enable }}
|
enable={{ right: enable }}
|
||||||
handleClasses={{ right: 'sidebar-resizer' }}
|
handleClasses={{
|
||||||
|
right: 'sidebar-resizer',
|
||||||
|
bottom: 'hidden',
|
||||||
|
bottomRight: 'hidden',
|
||||||
|
bottomLeft: 'hidden',
|
||||||
|
}}
|
||||||
size={{ width, height: '100%' }}
|
size={{ width, height: '100%' }}
|
||||||
minWidth={minWidth}
|
minWidth={minWidth}
|
||||||
maxWidth={maxWidth}
|
maxWidth={maxWidth}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue