From b5d96d312afdf625c81fc72afcb0276bb3f64904 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sat, 24 May 2025 09:15:09 +0200 Subject: [PATCH] :bug: Fix incorrect relink operation for stroke image --- common/src/app/common/files/helpers.cljc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/app/common/files/helpers.cljc b/common/src/app/common/files/helpers.cljc index bb0fb744f7..5ac14ac501 100644 --- a/common/src/app/common/files/helpers.cljc +++ b/common/src/app/common/files/helpers.cljc @@ -626,6 +626,9 @@ (map? (:fill-image form)) (update-in [:fill-image :id] lookup-index) + (map? (:stroke-image form)) + (update-in [:stroke-image :id] lookup-index) + ;; This covers old shapes and the new :fills. (uuid? (:fill-color-ref-file form)) (update :fill-color-ref-file lookup-index)