diff --git a/common/src/app/common/spec/shape.cljc b/common/src/app/common/spec/shape.cljc index 87ac86414..08ab1b023 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 56b69b5bc..38613db7b 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 9c9648e60..21406795d 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?))