diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-02-20 01:51:13 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-02-20 01:51:13 +0100 |
commit | bd116ff3ac5cc62bbd85ef7036bc64f3f14ce794 (patch) | |
tree | 8d82ae4f18f0c1ce8922814b41c295713e2177e1 /data | |
parent | 2abc7e13fe87f92feceafaf348f553cf8b6c9b9e (diff) | |
download | bugzilla-triage-bd116ff3ac5cc62bbd85ef7036bc64f3f14ce794.tar.gz |
Component should be normal component not search table.
Diffstat (limited to 'data')
-rw-r--r-- | data/bzpage.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/data/bzpage.js b/data/bzpage.js index c012e07..0d3bcbe 100644 --- a/data/bzpage.js +++ b/data/bzpage.js @@ -861,12 +861,8 @@ function queryInNewTab(text, component, product) { if (equivCompsArr.length > 0) { component = equivCompsArr[0]; } - urlStr += "&field0-0-0=component&type0-0-0=regexp&value0-0-0=" - + component.trim(); - } else { - urlStr += "&field0-0-0=component&type0-0-0=substring&value0-0-0=" - + component.trim(); } + urlStr += "&component=" + component.trim(); } // using more complicated query tables here, because they can be more easily |