From b38f4c6b5d6a8da8c66fdc254f832274c5e5c2a7 Mon Sep 17 00:00:00 2001
From: j <0x006A@0x2620.org>
Date: Mon, 2 Jan 2012 19:25:01 +0530
Subject: [PATCH] keywords etc have filters, use exact match
---
static/js/pandora/infoView.padma.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/static/js/pandora/infoView.padma.js b/static/js/pandora/infoView.padma.js
index f40f0ef9..c7c1a34d 100644
--- a/static/js/pandora/infoView.padma.js
+++ b/static/js/pandora/infoView.padma.js
@@ -434,7 +434,7 @@ pandora.ui.infoView = function(data) {
function formatValue(value, key) {
return (Ox.isArray(value) ? value : [value]).map(function(value) {
return key ?
- '' + value + ''
+ '' + value + ''
: value;
}).join(', ');
}