From ccca6a8f55636ce6f838eadda9b79bdcfee790a0 Mon Sep 17 00:00:00 2001 From: yuri Date: Wed, 3 Jun 2015 11:16:09 +0300 Subject: [PATCH] fix fullForm link --- frontend/client/src/views/modals/detail.js | 2 +- frontend/client/src/views/modals/edit.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/client/src/views/modals/detail.js b/frontend/client/src/views/modals/detail.js index 0a3bb9f2ee..c8f5f357bd 100644 --- a/frontend/client/src/views/modals/detail.js +++ b/frontend/client/src/views/modals/detail.js @@ -106,7 +106,7 @@ Espo.define('Views.Modals.Detail', 'Views.Modal', function (Dep) { this.header += ' » ' + model.get('name'); } if (!this.fullFormDisabled) { - this.header = '' + this.header + ''; + this.header = '' + this.header + ''; } if (this.editButton && this.getAcl().check(model, 'edit')) { diff --git a/frontend/client/src/views/modals/edit.js b/frontend/client/src/views/modals/edit.js index d7c5eb2557..16da6ae6ca 100644 --- a/frontend/client/src/views/modals/edit.js +++ b/frontend/client/src/views/modals/edit.js @@ -82,7 +82,7 @@ Espo.define('Views.Modals.Edit', 'Views.Modal', function (Dep) { this.header += ' ' + this.getLanguage().translate(this.scope, 'scopeNames'); if (!this.fullFormDisabled) { - this.header = '' + this.header + ''; + this.header = '' + this.header + ''; } this.waitForView('edit');