0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

🐛 Assign the default color on rendering text object.

This commit is contained in:
Andrey Antukh 2020-08-05 15:44:55 +02:00
parent 313723cfe1
commit eb02f420ec

View file

@ -123,7 +123,9 @@
(let [colors (into #{} (comp (map :fill)
(filter string?))
(tree-seq map? :children (:content shape)))]
(apply str (interpose "," colors))))
(if (empty? colors)
"#000000"
(apply str (interpose "," colors)))))
(mf/defc text-shape
{::mf/wrap-props false}