From 93bf8c1478ba5ec397b8aee63ab7b93faa3cb2fc Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Thu, 4 Jan 2024 12:01:46 +0100 Subject: [PATCH] :bug: Fix colors with image fill name --- frontend/src/app/main/ui/components/color_bullet_new.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/components/color_bullet_new.cljs b/frontend/src/app/main/ui/components/color_bullet_new.cljs index 6af3f502b..f15f3549c 100644 --- a/frontend/src/app/main/ui/components/color_bullet_new.cljs +++ b/frontend/src/app/main/ui/components/color_bullet_new.cljs @@ -75,5 +75,5 @@ :on-click on-click :on-double-click on-double-click} (if (some? image) - (tr "media.image") + (or name (tr "media.image")) (or name color (uc/gradient-type->string (:type gradient))))])))