From e66d44ca81a7774fed2c6a1baa1cbaea2c3cb055 Mon Sep 17 00:00:00 2001 From: Eva Marco Date: Fri, 5 Sep 2025 13:54:19 +0200 Subject: [PATCH] :bug: Fix wrong icon on path layer --- frontend/src/app/util/shape_icon.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/util/shape_icon.cljs b/frontend/src/app/util/shape_icon.cljs index dcc484184b..3602d8d24c 100644 --- a/frontend/src/app/util/shape_icon.cljs +++ b/frontend/src/app/util/shape_icon.cljs @@ -60,7 +60,7 @@ "elipse") :path (if (cts/has-images? shape) "img" - "rectangle") + "path") :rect (if (cts/has-images? shape) "img" "rectangle")