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-18 02:05:32 +00:00
committed by Copybot
co-authored by Miguel Serrano
parent c370785510
commit 387950b495
2 changed files with 4 additions and 1 deletions
@@ -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 && (
@@ -29,6 +29,7 @@ describe('<ToolbarHeader />', function () {
const props = {
...defaultProps,
cobranding: {
isProjectCobranded: true,
brandVariationHomeUrl: 'http://cobranding',
brandVariationName: 'variation',
logoImgUrl: 'http://cobranding/logo',