Fix the vertical overflow bug (Community - 3507) (#2423)

There is always overflow, at some point the renderer moves it to the top which hides messages
This commit is contained in:
Glenn 2022-09-13 17:07:45 +01:00 committed by GitHub
parent 1f263e6480
commit b1eae8097c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,12 +21,18 @@ class ThreadListVertical extends React.Component<
handle={ResizableHandle.Bottom}
onResize={h => this._onResize(h)}
>
<InjectedComponentSet
matching={{ role: 'ThreadList' }}
/>
<InjectedComponentSet matching={{ role: 'ThreadList' }} />
</ResizableRegion>
<ResizableRegion>
<div style={{ height: '100%', width: '100%', borderTop: '0.5px solid #dddddd' }}>
<div
style={{
display: 'flex',
flexDirection: 'column',
height: '100%',
width: '100%',
borderTop: '0.5px solid #dddddd',
}}
>
<div className="sheet-toolbar" style={{ borderBottom: '0' }}>
<InjectedComponentSet
matching={{