Added ID to alert overview search scope.

This commit is contained in:
2025-03-09 06:45:51 +01:00
parent 298c54cdbb
commit 43efc440ba

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;
}