From 0c098e768cace500b4414784314e52868321021d Mon Sep 17 00:00:00 2001 From: j Date: Fri, 17 Nov 2023 11:36:03 +0100 Subject: [PATCH] fix links with quotes --- static/js/infoView.fcra.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/js/infoView.fcra.js b/static/js/infoView.fcra.js index c011f66..87b5de0 100644 --- a/static/js/infoView.fcra.js +++ b/static/js/infoView.fcra.js @@ -639,7 +639,9 @@ pandora.ui.infoView = function(data, isMixed) { function formatLink(key, value, linkValue) { return (Ox.isArray(value) ? value : [value]).map(function(value) { return key - ? '' + value + '' + ? '' + value + '' : value; }).join(', '); }