diff --git a/common/src/app/common/schema.cljc b/common/src/app/common/schema.cljc index 16bc20d5f4..87d0784969 100644 --- a/common/src/app/common/schema.cljc +++ b/common/src/app/common/schema.cljc @@ -863,7 +863,7 @@ (defn parse-boolean [v] (if (string? v) - (case v + (case (str/lower v) ("true" "t" "1") true ("false" "f" "0") false v)