From 2fca224ba40f72b9dfd5a0ee7e741f72f90fa227 Mon Sep 17 00:00:00 2001 From: yuri Date: Mon, 8 May 2017 10:55:47 +0300 Subject: [PATCH] fix html --- client/src/views/fields/attachment-multiple.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/fields/attachment-multiple.js b/client/src/views/fields/attachment-multiple.js index 9f88f4ab37..d3173cbe9b 100644 --- a/client/src/views/fields/attachment-multiple.js +++ b/client/src/views/fields/attachment-multiple.js @@ -437,7 +437,7 @@ Espo.define('views/fields/attachment-multiple', 'views/fields/base', function (D previews.push('
' + this.getDetailPreview(name, type, id) + '
'); continue; } - var line = '
' + Handlebars.Utils.escapeExpression(name); + '
'; + var line = '
' + Handlebars.Utils.escapeExpression(name) + '
'; names.push(line); } var string = previews.join('') + names.join('');