fix login logo

This commit is contained in:
yuri
2018-08-14 17:29:15 +03:00
parent c11d52cef6
commit e6796390db
+1 -1
View File
@@ -58,7 +58,7 @@ Espo.define('views/login', 'view', function (Dep) {
getLogoSrc: function () {
var companyLogoId = this.getConfig().get('companyLogoId');
if (!companyLogoId) {
return this.getBasePath() + (this.getThemeManager().getParam('logo') || 'client/img/logo.png');
return this.getBasePath() + ('client/img/logo.png');
}
return this.getBasePath() + '?entryPoint=LogoImage&id='+companyLogoId+'&t=' + companyLogoId;
},