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) {
|
||||
return Ox.encodeHTMLEntities(
|
||||
Ox.decodeHTMLEntities(value).split(separator)
|
||||
);
|
||||
return Ox.decodeHTMLEntities(value).split('; ').map(function(value) {
|
||||
return Ox.encodeHTMLEntities(value);
|
||||
});
|
||||
}
|
||||
|
||||
return that;
|
||||
|
|
Loading…
Reference in a new issue