Added ID to alert overview search scope.

This commit is contained in:
DebaucheryLibrarian 2025-03-09 06:45:51 +01:00
parent 298c54cdbb
commit 43efc440ba
1 changed files with 4 additions and 0 deletions

View File

@ -263,6 +263,10 @@ const filteredAlerts = computed(() => {
return false;
}
if (queryRegex.test(alert.id)) {
return true;
}
if (alert.actors.some((actor) => queryRegex.test(actor.name))) {
return true;
}