fix formatting of arrays on info page
This commit is contained in:
parent
165f9650ec
commit
54636fbc63
1 changed files with 3 additions and 1 deletions
|
@ -319,7 +319,9 @@ oml.ui.infoView = function(identifyData) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function splitValue(value) {
|
function splitValue(value) {
|
||||||
return Ox.encodeHTMLEntities(Ox.decodeHTMLEntities(value).split('; '));
|
return Ox.decodeHTMLEntities(value).split('; ').map(function(value) {
|
||||||
|
return Ox.encodeHTMLEntities(value);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleCoverSize(ratio) {
|
function toggleCoverSize(ratio) {
|
||||||
|
|
Loading…
Reference in a new issue