From 5024a2ba0c0ebeefb8103ef23907cc3e88b80757 Mon Sep 17 00:00:00 2001 From: j Date: Fri, 11 Sep 2020 14:31:50 +0200 Subject: [PATCH] display lists in collection list view --- static/js/collection.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/js/collection.js b/static/js/collection.js index eb3976022..5b188f7f2 100644 --- a/static/js/collection.js +++ b/static/js/collection.js @@ -26,7 +26,11 @@ pandora.ui.collection = function() { defaultWidth: key.columnWidth, format: (function() { return function(value, data) { - return pandora.formatDocumentKey(key, data); + var value = pandora.formatDocumentKey(key, data); + if (Ox.isArray(value)) { + value = value.join(', '); + } + return value; } })(), id: key.id,