diff --git a/frontend/src/app/main/ui/shapes/text.cljs b/frontend/src/app/main/ui/shapes/text.cljs index bfffea013..4578692b2 100644 --- a/frontend/src/app/main/ui/shapes/text.cljs +++ b/frontend/src/app/main/ui/shapes/text.cljs @@ -78,7 +78,7 @@ [shape] (let [colors (->> shape :content (tree-seq map? :children) - (into #{} (comp (map :fill) (filter string?))))] + (into #{} (comp (map :fill-color) (filter string?))))] (if (empty? colors) "#000000" (apply str (interpose "," colors)))))