mirror of
https://github.com/penpot/penpot.git
synced 2025-02-10 00:58:26 -05:00
🐛 Fixes problem with library and colors
This commit is contained in:
parent
f992c740d5
commit
5e299551b7
1 changed files with 9 additions and 11 deletions
|
@ -191,7 +191,7 @@
|
|||
:options [[(tr "workspace.assets.delete") on-delete]]}])])]))
|
||||
|
||||
(mf/defc color-item
|
||||
[{:keys [color local? locale file-id] :as props}]
|
||||
[{:keys [color local? locale] :as props}]
|
||||
(let [rename? (= (:color-for-rename @refs/workspace-local) (:id color))
|
||||
id (:id color)
|
||||
input-ref (mf/use-ref)
|
||||
|
@ -333,16 +333,14 @@
|
|||
(when open?
|
||||
[:div.group-list
|
||||
(for [color colors]
|
||||
[:& color-item {:key (:id color)
|
||||
:color (if (:value color)
|
||||
(-> color
|
||||
(assoc :color (:value color)
|
||||
:opacity 1)
|
||||
(dissoc :value))
|
||||
color)
|
||||
:file-id file-id
|
||||
:local? local?
|
||||
:locale locale}])])]))
|
||||
(let [color (cond-> color
|
||||
(:value color) (assoc :color (:value color) :opacity 1)
|
||||
(:value color) (dissoc :value)
|
||||
true (assoc :file-id file-id))]
|
||||
[:& color-item {:key (:id color)
|
||||
:color color
|
||||
:local? local?
|
||||
:locale locale}]))])]))
|
||||
|
||||
(mf/defc typography-box
|
||||
[{:keys [file file-id local? typographies locale open? on-open on-close] :as props}]
|
||||
|
|
Loading…
Add table
Reference in a new issue