Fix email preview being hidden in vertical layout (edge case) (#2443)

This commit is contained in:
Glenn 2023-04-12 03:52:16 +01:00 committed by GitHub
parent db5366bbc9
commit 3dfc84c0ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ class ThreadListVertical extends React.Component<
>
<InjectedComponentSet matching={{ role: 'ThreadList' }} />
</ResizableRegion>
<ResizableRegion>
<div style={{ flex: '1 1 0%' }}>
<div
style={{
display: 'flex',
@ -45,7 +45,7 @@ class ThreadListVertical extends React.Component<
matching={{ location: WorkspaceStore.Location.MessageList, modes: ['split'] }}
/>
</div>
</ResizableRegion>
</div>
</>
);
}