Added ID to alert overview search scope.
This commit is contained in:
parent
298c54cdbb
commit
43efc440ba
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue