keywords etc have filters, use exact match

This commit is contained in:
j 2012-01-02 19:25:01 +05:30
parent f37e390fcb
commit b38f4c6b5d

View file

@ -434,7 +434,7 @@ pandora.ui.infoView = function(data) {
function formatValue(value, key) {
return (Ox.isArray(value) ? value : [value]).map(function(value) {
return key ?
'<a href="/' + key + '=' + value + '">' + value + '</a>'
'<a href="/' + key + '==' + value + '">' + value + '</a>'
: value;
}).join(', ');
}