From 04246936d2c752c402987e58e4f1ad99ba946844 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Fri, 29 Jan 2021 21:46:03 +0100 Subject: [PATCH] :bug: Fixed console error with NaN stroke --- frontend/src/app/main/ui/shapes/custom_stroke.cljs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/main/ui/shapes/custom_stroke.cljs b/frontend/src/app/main/ui/shapes/custom_stroke.cljs index bd6c4df4f..335ff5a11 100644 --- a/frontend/src/app/main/ui/shapes/custom_stroke.cljs +++ b/frontend/src/app/main/ui/shapes/custom_stroke.cljs @@ -63,15 +63,15 @@ (= stroke-position :outer) (let [stroke-mask-id (str "mask-" @stroke-id) - stroke-width (.-strokeWidth ^js base-props) + stroke-width (or (.-strokeWidth ^js base-props) 0) mask-props1 (-> (obj/merge! #js {} base-props) (obj/merge! #js {:stroke "white" - :strokeWidth (* stroke-width 2) - :strokeOpacity 1 - :strokeDasharray nil - :fill "white" - :fillOpacity 1 - :transform nil})) + :strokeWidth (* stroke-width 2) + :strokeOpacity 1 + :strokeDasharray nil + :fill "white" + :fillOpacity 1 + :transform nil})) mask-props2 (-> (obj/merge! #js {} base-props) (obj/merge! #js {:stroke nil :strokeWidth nil