From fa77f18cce2180399ba68e38d6d1a454e3b1ec12 Mon Sep 17 00:00:00 2001 From: j Date: Sat, 23 Jan 2016 22:55:34 +0530 Subject: [PATCH] end arra values without entities, fixes #207 --- static/js/infoView.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/js/infoView.js b/static/js/infoView.js index 89cfa20..d3cf33f 100644 --- a/static/js/infoView.js +++ b/static/js/infoView.js @@ -787,7 +787,9 @@ oml.ui.infoView = function(externalData, isMixed) { var edit = Ox.extend( {id: !isMultiple ? data.id : ui.listSelection}, key, - Ox.contains(arrayKeys, key) ? splitValue(value, key) : value + Ox.contains(arrayKeys, key) + ? splitValue(value, key).map(Ox.decodeHTMLEntities) + : value ); if (!Ox.isEqual(edit[key], data[key])) { data[key] = edit[key];