diff --git a/client/src/views/login.js b/client/src/views/login.js index 9103ad31d8..f4b860b54b 100644 --- a/client/src/views/login.js +++ b/client/src/views/login.js @@ -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; },