From 79c2a6c5d55cb94b494a23ccb0a12dcb793b934c Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 2 Jan 2024 08:34:46 +0100 Subject: [PATCH] :bug: Fix round for both ends of path --- frontend/src/app/main/ui/shapes/attrs.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/shapes/attrs.cljs b/frontend/src/app/main/ui/shapes/attrs.cljs index 14bee97258..e2bcf1156b 100644 --- a/frontend/src/app/main/ui/shapes/attrs.cljs +++ b/frontend/src/app/main/ui/shapes/attrs.cljs @@ -124,7 +124,7 @@ (not= :inner alignment) (not= :outer alignment) (not= :dotted style)) - (obj/set! attrs "strokeLinecap" caps-start) + (obj/set! attrs "strokeLinecap" (name caps-start)) (= :dotted style) (obj/set! attrs "strokeLinecap" "round"))