Add conditional rendering to CobrandingLogo (#4221)

Co-authored-by: Miguel Serrano <mserranom@gmail.com>
GitOrigin-RevId: 033cc5bfdbbd3cc03d11f28f9e2dc0cd6d95b8ff
This commit is contained in:
Alf Eaton 2021-06-17 12:47:19 +01:00 committed by Copybot
parent c370785510
commit 387950b495
2 changed files with 4 additions and 1 deletions

View file

@ -39,7 +39,9 @@ function ToolbarHeader({
<header className="toolbar toolbar-header toolbar-with-labels">
<div className="toolbar-left">
<MenuButton onClick={onShowLeftMenuClick} />
{cobranding ? <CobrandingLogo {...cobranding} /> : null}
{cobranding &&
cobranding.isProjectCobranded &&
cobranding.logoImgUrl && <CobrandingLogo {...cobranding} />}
<BackToProjectsButton />
</div>
{pdfButtonIsVisible && (

View file

@ -29,6 +29,7 @@ describe('<ToolbarHeader />', function () {
const props = {
...defaultProps,
cobranding: {
isProjectCobranded: true,
brandVariationHomeUrl: 'http://cobranding',
brandVariationName: 'variation',
logoImgUrl: 'http://cobranding/logo',