0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-23 15:26:29 -05:00

🐛 Fix color id on color bullet component (#5731)

This commit is contained in:
Eva Marco 2025-01-30 16:21:38 +01:00 committed by GitHub
parent 7cdb4719bf
commit 2f1daf0649
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,7 +68,7 @@
:title (color-title color)}]
;; No multiple selection
(let [color (if (string? color) {:color color :opacity 1} color)
id (:id color)
id (or (:ref-id color) (:id color))
gradient (:gradient color)
opacity (:opacity color)
image (:image color)]