From fced0cf3b18bbb0dafa3ee1bb562075f976b9d57 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Fri, 11 Apr 2025 10:56:08 +0200 Subject: [PATCH] :bug: Fix problem with booleans in wasm --- frontend/src/app/render_wasm/shape.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/render_wasm/shape.cljs b/frontend/src/app/render_wasm/shape.cljs index 75da5913e..f2eef1899 100644 --- a/frontend/src/app/render_wasm/shape.cljs +++ b/frontend/src/app/render_wasm/shape.cljs @@ -145,7 +145,8 @@ :content (cond - (= (:type self) :path) + (or (= (:type self) :path) + (= (:type self) :bool)) (api/set-shape-path-content v) (= (:type self) :svg-raw)