diff --git a/common/app/common/math.cljc b/common/app/common/math.cljc index c81db2a39..22ebd97af 100644 --- a/common/app/common/math.cljc +++ b/common/app/common/math.cljc @@ -96,7 +96,7 @@ the nearest integer." [v] #?(:cljs (js/Math.round v) - :clj (Math/round v))) + :clj (Math/round (float v)))) (defn ceil "Returns the smallest integer greater than