diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-01-24 16:50:11 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-01-24 16:50:11 +0100 |
commit | 98def3926862c19b5b6ee30bba5bb0ad6bffd0db (patch) | |
tree | 48f598f4c99c5cf0fe262ecc158fde9c69ea1fe0 /extensions/Review/web/js | |
parent | 6d835375c1ccb19efabb1768acfb0d361ef931b4 (diff) | |
download | bugzilla-98def3926862c19b5b6ee30bba5bb0ad6bffd0db.tar.gz bugzilla-98def3926862c19b5b6ee30bba5bb0ad6bffd0db.tar.xz |
Bug 1429888 - See All link in Requests dropdown should show results grouped by flags as before
Diffstat (limited to 'extensions/Review/web/js')
-rw-r--r-- | extensions/Review/web/js/badge.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Review/web/js/badge.js b/extensions/Review/web/js/badge.js index 8580c0ba1..d104ce5ae 100644 --- a/extensions/Review/web/js/badge.js +++ b/extensions/Review/web/js/badge.js @@ -47,7 +47,7 @@ Bugzilla.Review.Badge = class Badge { this.initialized = true; - const url = this.$panel.querySelector('footer a').href + '&ctype=json'; + const url = this.$panel.querySelector('footer a').href.replace(/type$/, 'requestee') + '&ctype=json'; const response = await fetch(url, { credentials: 'same-origin' }); const _requests = response.ok ? await response.json() : []; |