Remove non-empty string validation in frontend

This commit is contained in:
Stuart Nelson 2018-03-20 10:46:03 +01:00
parent f5df55666b
commit c300cd9f8d
2 changed files with 2 additions and 2 deletions
ui/app/src/Views/SilenceForm

View File

@ -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

View File

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