mirror of
https://github.com/prometheus/alertmanager
synced 2025-04-01 22:48:42 +00:00
Remove non-empty string validation in frontend
This commit is contained in:
parent
f5df55666b
commit
c300cd9f8d
ui/app/src/Views/SilenceForm
@ -204,7 +204,7 @@ fromMatchersAndTime defaultCreator matchers now =
|
||||
appendMatcher : MatcherForm -> Result String (List Matcher) -> Result String (List Matcher)
|
||||
appendMatcher { isRegex, name, value } =
|
||||
Result.map2 (::)
|
||||
(Result.map2 (Matcher isRegex) (stringNotEmpty name.value) (stringNotEmpty value.value))
|
||||
(Result.map2 (Matcher isRegex) (stringNotEmpty name.value) (Ok value.value))
|
||||
|
||||
|
||||
filterMatcherToMatcher : Utils.Filter.Matcher -> Maybe Matcher
|
||||
|
@ -158,7 +158,7 @@ updateForm msg form =
|
||||
let
|
||||
matchers =
|
||||
Utils.List.replaceIndex index
|
||||
(\matcher -> { matcher | value = validate stringNotEmpty matcher.value })
|
||||
(\matcher -> { matcher | value = matcher.value })
|
||||
form.matchers
|
||||
in
|
||||
{ form | matchers = matchers }
|
||||
|
Loading…
Reference in New Issue
Block a user