Merge pull request #6856 from SimonBrandner/fix/soft-crash

Fix `AppsDrawer` soft crash
This commit is contained in:
David Baker 2021-09-22 14:56:00 +01:00 committed by GitHub
commit f69854b274
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -317,7 +317,7 @@ const PersistentVResizer: React.FC<IPersistentResizerProps> = ({
});
return <Resizable
size={{ height: Math.min(height, maxHeight), width: null }}
size={{ height: Math.min(height, maxHeight), width: undefined }}
minHeight={minHeight}
maxHeight={maxHeight}
onResizeStart={() => {