Fixes non working severity filter counter (#5990)

This commit is contained in:
MatteoBiscosi 2021-10-18 12:41:42 +02:00
parent af840f4170
commit 9be230902c
2 changed files with 4 additions and 2 deletions

View file

@ -456,7 +456,7 @@ local function validateAlertType(mode)
end
local function validateAlertTypeSeverity(mode)
local modes = {"notice_or_lower", "warning", "error_or_higher"}
local modes = {"group_none", "notice_or_lower", "warning", "error_or_higher"}
return validateChoice(modes, mode)
end