Merge pull request #6856 from SimonBrandner/fix/soft-crash
Fix `AppsDrawer` soft crash
This commit is contained in:
commit
f69854b274
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ const PersistentVResizer: React.FC<IPersistentResizerProps> = ({
|
||||||
});
|
});
|
||||||
|
|
||||||
return <Resizable
|
return <Resizable
|
||||||
size={{ height: Math.min(height, maxHeight), width: null }}
|
size={{ height: Math.min(height, maxHeight), width: undefined }}
|
||||||
minHeight={minHeight}
|
minHeight={minHeight}
|
||||||
maxHeight={maxHeight}
|
maxHeight={maxHeight}
|
||||||
onResizeStart={() => {
|
onResizeStart={() => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue