0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-12 07:41:43 -05:00

🐛 Fix incorrect alias on shape-attrs spec on workspace.

This commit is contained in:
Andrey Antukh 2022-01-28 16:16:45 +01:00
parent b586f2552c
commit 26e5d57ced
3 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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?))

View file

@ -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?))