diff --git a/static/js/pandora/infoView.padma.js b/static/js/pandora/infoView.padma.js index 2191fccf..58b3c80a 100644 --- a/static/js/pandora/infoView.padma.js +++ b/static/js/pandora/infoView.padma.js @@ -246,7 +246,8 @@ pandora.ui.infoView = function(data) { clickLink: pandora.clickLink, editable: key != 'duration', format: function(value) { - return key != 'duration' ? formatValue(value, key) + return key != 'duration' ? formatValue(listKeys.indexOf(key) >= 0 + ? value.split(', ') : value, key) : value < 60 ? Math.round(value) + ' sec' : Math.round(value / 60) + ' min'; }, @@ -509,7 +510,7 @@ pandora.ui.infoView = function(data) { var edit = {id: data.id}; if (key == 'title') { edit[key] = value; - } else if (listKeys.indexOf(key) > -1) { + } else if (listKeys.indexOf(key) >= 0) { edit[key] = value ? value.split(', ') : []; } else { edit[key] = value ? value : null;