Skip to content
Snippets Groups Projects
Commit 22cd3d4d authored by Mathéo Joseph's avatar Mathéo Joseph Committed by Sébastien Blin
Browse files

whitelabeling: fix problem when no custom logo in custom Ui

Change-Id: I3a90a20e1963277e72c3980bf5002c16a9a4f213
parent 53811f93
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ ListSelectionView {
customBgUrl = hasCustomBgImage ? (CurrentAccount.managerUri + uiCustomization.backgroundColorOrUrl) : "";
hasCustomBgColor = (hasCustomUi && uiCustomization.backgroundType === "color");
customBgColor = hasCustomBgColor ? uiCustomization.backgroundColorOrUrl : "";
hasCustomLogo = (hasCustomUi && hasLogo && uiCustomization.logoUrl);
hasCustomLogo = (hasCustomUi && hasLogo && uiCustomization.logoUrl !== undefined);
customLogoUrl = hasCustomLogo ? CurrentAccount.managerUri + uiCustomization.logoUrl : "";
hasWelcomeInfo = hasTitle || hasDescription;
hasBottomId = !hasWelcomeInfo && !hasTips && hasLogo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment