From 6727717d1adbfaf96633d3ea0b98c1e4c73f6104 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Wed, 29 Dec 2021 14:35:32 +0100 Subject: [PATCH] :bug: Fix problem with join nodes --- CHANGES.md | 1 + frontend/src/app/util/path/tools.cljs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 1f3977252..bbb7ec334 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,6 +15,7 @@ - Fix problems when exporting all artboards [Taiga #2234](https://tree.taiga.io/project/penpot/issue/2234). - Fix problems with team management [#1353](https://github.com/penpot/penpot/issues/1353) - Fix problem when importing in shared libraries [#1362](https://github.com/penpot/penpot/issues/1362) +- Fix problem with join nodes [#1422](https://github.com/penpot/penpot/issues/1422) ### :arrow_up: Deps updates ### :heart: Community contributions by (Thank you!) diff --git a/frontend/src/app/util/path/tools.cljs b/frontend/src/app/util/path/tools.cljs index df1eb38f3..97a8a0ddd 100644 --- a/frontend/src/app/util/path/tools.cljs +++ b/frontend/src/app/util/path/tools.cljs @@ -304,7 +304,7 @@ [content points] (let [segments-set (into #{} - (juxt :start :end) + (map (juxt :start :end)) (get-segments content points)) create-line-command (fn [point other]