From e6796390db733c90e559845055419fc4f202cedd Mon Sep 17 00:00:00 2001 From: yuri Date: Tue, 14 Aug 2018 17:29:15 +0300 Subject: [PATCH] fix login logo --- client/src/views/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; },