From f60cf5de108a1397f6c88f05bbf25d4066474eeb Mon Sep 17 00:00:00 2001 From: Rolux Date: Tue, 5 Jan 2016 20:15:09 +0530 Subject: [PATCH] fix an issue in edit dialog --- static/js/editDialog.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/js/editDialog.js b/static/js/editDialog.js index 1cc3568..d493008 100644 --- a/static/js/editDialog.js +++ b/static/js/editDialog.js @@ -262,7 +262,9 @@ oml.ui.editDialog = function() { Ox.EditableContent({ editable: true, format: function(value) { - return formatValue(Ox.encodeHTMLEntities(value)); + return formatValue( + Ox.encodeHTMLEntities(value), 'description' + ); }, placeholder: formatLight('No Description'), tooltip: tooltip,