diff --git a/static/js/infoView.fcra.js b/static/js/infoView.fcra.js index f32817b..7193851 100644 --- a/static/js/infoView.fcra.js +++ b/static/js/infoView.fcra.js @@ -646,6 +646,11 @@ pandora.ui.infoView = function(data, isMixed) { ret = pandora.formatDate(value); } else if (listKeys.indexOf(key) > -1) { ret = value.split(', '); + } else if (key == 'links') { + ret = value.split(', ').map(function(link) { + return '' + Ox.parseURL(link).host + ''; + }).join(', '); + } else { ret = value; }