add min height to title to keep page redrwaw from flashing

This commit is contained in:
John Mitchell
2021-01-19 11:49:58 -05:00
parent 8d46e78606
commit a0ded889f9

View File

@@ -39,10 +39,16 @@ const ScreenHeader = ({ breadcrumbConfig, i18n, streamType }) => {
</Route> </Route>
</Breadcrumb> </Breadcrumb>
)} )}
<div
style={{
minHeight: '31px',
}}
>
<Route path="/:path"> <Route path="/:path">
<ActualTitle breadcrumbConfig={breadcrumbConfig} /> <ActualTitle breadcrumbConfig={breadcrumbConfig} />
</Route> </Route>
</div> </div>
</div>
{streamType !== 'none' && ( {streamType !== 'none' && (
<div> <div>
<Tooltip content={i18n._(t`View activity stream`)} position="top"> <Tooltip content={i18n._(t`View activity stream`)} position="top">