diff mbox series

[yocto-autobuilder-helper,3/8] dashboard/bugtriage: match whiteboard on words not substrings

Message ID 20260911210351.2020798-3-ross.burton@arm.com
State New
Headers show
Series [yocto-autobuilder-helper,1/8] dashboard/bugtriage: reformat HTML | expand

Commit Message

Ross Burton Sept. 11, 2026, 9:03 p.m. UTC
This avoids false positives with substring matches.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 scripts/dashboard/bugtriage/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/dashboard/bugtriage/index.html b/scripts/dashboard/bugtriage/index.html
index 7970b5dd..873a3b6f 100644
--- a/scripts/dashboard/bugtriage/index.html
+++ b/scripts/dashboard/bugtriage/index.html
@@ -607,7 +607,7 @@ 
       const params = new URLSearchParams({
         resolution: "---",
         status_whiteboard: keyword,
-        status_whiteboard_type: "substring",
+        status_whiteboard_type: "anywords",
       });
       const bugs = await searchBugs(table, params);
     }