| Message ID | 20260317232902.2404326-3-yoann.congal@smile.fr |
|---|---|
| State | New |
| Headers | show |
| Series | [yocto-autobuilder-helper,v2,1/5] dashboard/bugtriage: Add newline at EOL | expand |
diff --git a/scripts/dashboard/bugtriage/index.html b/scripts/dashboard/bugtriage/index.html index e62d211..12c0c9d 100644 --- a/scripts/dashboard/bugtriage/index.html +++ b/scripts/dashboard/bugtriage/index.html @@ -564,7 +564,8 @@ async function bugsByWhiteboard(table, keyword) { const params = new URLSearchParams({ resolution: "---", - whiteboard: keyword, + status_whiteboard: keyword, + status_whiteboard_type: "substring", }); const bugs = await searchBugs(table, params); } @@ -579,7 +580,7 @@ async function bugsByStatus(table, status) { const params = new URLSearchParams({ - status: status + bug_status: status }); const bugs = await searchBugs(table, params); }