From 07f055bd49160c4cc6110189337ab60db138bbdc Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 17 Oct 2024 15:27:42 +0200 Subject: [PATCH] :bug: Fix problem when duplicating board with guide --- common/src/app/common/logic/libraries.cljc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/logic/libraries.cljc b/common/src/app/common/logic/libraries.cljc index 25cf38cca..61f9a2bbe 100644 --- a/common/src/app/common/logic/libraries.cljc +++ b/common/src/app/common/logic/libraries.cljc @@ -1988,7 +1988,8 @@ (+ (:position guide) (- (:y new-frame) (:y frame)))) guide {:id guide-id :frame-id new-id - :position position}] + :position position + :axis (:axis guide)}] (pcb/set-guide changes guide-id guide)) changes)) changes