From 2f1daf0649728a6e3be61b397aa65376731ace69 Mon Sep 17 00:00:00 2001 From: Eva Marco Date: Thu, 30 Jan 2025 16:21:38 +0100 Subject: [PATCH] :bug: Fix color id on color bullet component (#5731) --- frontend/src/app/main/ui/components/color_bullet.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/components/color_bullet.cljs b/frontend/src/app/main/ui/components/color_bullet.cljs index eb1795427..79fae7c6b 100644 --- a/frontend/src/app/main/ui/components/color_bullet.cljs +++ b/frontend/src/app/main/ui/components/color_bullet.cljs @@ -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)]