fix & in links

This commit is contained in:
j 2021-09-15 14:05:01 +02:00
parent 61103f083b
commit ad28a0b186
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ pandora.ui.documentInfoView = function(data, isMixed) {
op = documentKey && documentKey.filter ? '==' : '=';
return key
? '<a href="/documents/' + key + op + value + '">' + value + '</a>'
? '<a href="/documents/' + key + op + pandora.escapeQueryValue(value) + '">' + value + '</a>'
: value;
}).join(', ');
}