From 2fa81474b904985c7e6137afcff11c4e17deb0f3 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Mon, 11 Nov 2024 16:06:37 +0100 Subject: [PATCH] :bug: Fix problem creating manual overlay interactions --- CHANGES.md | 6 ++++++ .../app/main/data/workspace/interactions.cljs | 16 +++++++++------- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e3c426ce5..3a7117463 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # CHANGELOG +## 2.3.3 + +### :bug: Bugs fixed + +- Fix problem creating manual overlay interactions [Taiga #9146](https://tree.taiga.io/project/penpot/issue/9146) + ## 2.3.2 ### :bug: Bugs fixed diff --git a/frontend/src/app/main/data/workspace/interactions.cljs b/frontend/src/app/main/data/workspace/interactions.cljs index e8dfd1253..ef6230692 100644 --- a/frontend/src/app/main/data/workspace/interactions.cljs +++ b/frontend/src/app/main/data/workspace/interactions.cljs @@ -206,14 +206,16 @@ (watch [_ _ _] (let [interactions (ctsi/update-interaction (:interactions shape) index update-fn) interaction (nth interactions index)] - (rx/of (dwsh/update-shapes - [(:id shape)] - (fn [shape] - (assoc shape :interactions interactions)) - options) + (rx/of + (dwsh/update-shapes + [(:id shape)] + (fn [shape] + (-> shape + (update :interactions ctsi/update-interaction index update-fn))) + options) - (when (some? (:destination interaction)) - (dwsh/update-shapes [(:destination interaction)] cls/show-in-viewer options)))))))) + (when (some? (:destination interaction)) + (dwsh/update-shapes [(:destination interaction)] cls/show-in-viewer options)))))))) (defn remove-all-interactions-nav-to "Remove all interactions that navigate to the given frame."