diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index dc619af1f..8feba516e 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -377,6 +377,12 @@ define([ if ( role == 'left' && (!config || !config.isDesktopApp)) { $html = $(templateLeftBox); this.logo = $html.find('#header-logo'); + + if (this.branding && this.branding.logo && this.branding.logo.image && this.logo) { + this.logo.html(''); + this.logo.css({'background-image': 'none', width: 'auto'}); + } + return $html; } else if ( role == 'right' ) {