From 13312dc4679a07b9e5f65cd2b1a9a11d3f3d41f7 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 31 Jul 2023 13:36:28 +0200 Subject: [PATCH] :bug: Allow nil values for x,y,width and height on paths --- common/src/app/common/types/shape.cljc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/src/app/common/types/shape.cljc b/common/src/app/common/types/shape.cljc index d43deb573..3f2e3113c 100644 --- a/common/src/app/common/types/shape.cljc +++ b/common/src/app/common/types/shape.cljc @@ -215,6 +215,10 @@ [:map {:title "PathAttrs"} [:type [:= :path]] [:id ::sm/uuid] + [:x {:optional true} [:maybe ::sm/safe-number]] + [:y {:optional true} [:maybe ::sm/safe-number]] + [:width {:optional true} [:maybe ::sm/safe-number]] + [:height {:optional true} [:maybe ::sm/safe-number]] [:content [:vector [:map