fix formatting in edit dialog
This commit is contained in:
parent
008df08fd0
commit
a6e95f44ca
1 changed files with 3 additions and 3 deletions
|
@ -287,9 +287,9 @@ oml.ui.editDialog = function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function splitValue(value) {
|
function splitValue(value) {
|
||||||
return Ox.encodeHTMLEntities(
|
return Ox.decodeHTMLEntities(value).split('; ').map(function(value) {
|
||||||
Ox.decodeHTMLEntities(value).split(separator)
|
return Ox.encodeHTMLEntities(value);
|
||||||
);
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
Loading…
Reference in a new issue