From 26e5d57ceda8fcb15a5e11090757e6e72fc287a9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 28 Jan 2022 16:16:45 +0100 Subject: [PATCH] :bug: Fix incorrect alias on shape-attrs spec on workspace. --- common/src/app/common/spec/shape.cljc | 1 + frontend/src/app/main/data/workspace.cljs | 2 +- frontend/src/app/main/data/workspace/common.cljs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common/src/app/common/spec/shape.cljc b/common/src/app/common/spec/shape.cljc index 87ac864142..08ab1b023f 100644 --- a/common/src/app/common/spec/shape.cljc +++ b/common/src/app/common/spec/shape.cljc @@ -145,6 +145,7 @@ ::fill-color-gradient ::fill-color-ref-file ::fill-color-ref-id + ::hide-fill-on-export ::font-family ::font-size ::font-style diff --git a/frontend/src/app/main/data/workspace.cljs b/frontend/src/app/main/data/workspace.cljs index 56b69b5bc3..38613db7bf 100644 --- a/frontend/src/app/main/data/workspace.cljs +++ b/frontend/src/app/main/data/workspace.cljs @@ -59,7 +59,7 @@ [cuerdas.core :as str] [potok.core :as ptk])) -(s/def ::shape-attrs ::spec.shape/shape) +(s/def ::shape-attrs ::spec.shape/shape-attrs) (s/def ::set-of-string (s/every string? :kind set?)) diff --git a/frontend/src/app/main/data/workspace/common.cljs b/frontend/src/app/main/data/workspace/common.cljs index 9c9648e603..21406795d8 100644 --- a/frontend/src/app/main/data/workspace/common.cljs +++ b/frontend/src/app/main/data/workspace/common.cljs @@ -28,7 +28,7 @@ ;; Change this to :info :debug or :trace to debug this module (log/set-level! :warn) -(s/def ::shape-attrs ::spec.shape/shape) +(s/def ::shape-attrs ::spec.shape/shape-attrs) (s/def ::set-of-string (s/every string? :kind set?)) (s/def ::ordered-set-of-uuid (s/every uuid? :kind d/ordered-set?))