handle mixed string/array data
This commit is contained in:
parent
15358a290b
commit
72d692466d
1 changed files with 1 additions and 1 deletions
|
|
@ -583,7 +583,7 @@ pandora.ui.infoView = function(data) {
|
||||||
|
|
||||||
function getValue(key, value) {
|
function getValue(key, value) {
|
||||||
return !value ? ''
|
return !value ? ''
|
||||||
: Ox.contains(listKeys, key) ? value.join(', ')
|
: Ox.contains(listKeys, key) && Ox.isArray(value) ? value.join(', ')
|
||||||
: value;
|
: value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue