end arra values without entities, fixes #207
This commit is contained in:
parent
ff5917ade0
commit
fa77f18cce
1 changed files with 3 additions and 1 deletions
|
@ -787,7 +787,9 @@ oml.ui.infoView = function(externalData, isMixed) {
|
||||||
var edit = Ox.extend(
|
var edit = Ox.extend(
|
||||||
{id: !isMultiple ? data.id : ui.listSelection},
|
{id: !isMultiple ? data.id : ui.listSelection},
|
||||||
key,
|
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])) {
|
if (!Ox.isEqual(edit[key], data[key])) {
|
||||||
data[key] = edit[key];
|
data[key] = edit[key];
|
||||||
|
|
Loading…
Reference in a new issue