From 9f80ddd1254ed47df7738711cbf3e3f03a34f66c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 25 Jan 2024 17:01:08 +0100 Subject: [PATCH] :bug: Fix path shapes that does not have :content attr --- common/src/app/common/files/migrations.cljc | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/common/src/app/common/files/migrations.cljc b/common/src/app/common/files/migrations.cljc index 39d448597..686b49efb 100644 --- a/common/src/app/common/files/migrations.cljc +++ b/common/src/app/common/files/migrations.cljc @@ -697,9 +697,16 @@ (defmethod migrate 39 [data] (letfn [(update-shape [shape] - (if (and (cfh/bool-shape? shape) - (not (contains? shape :bool-content))) + (cond + (and (cfh/bool-shape? shape) + (not (contains? shape :bool-content))) (assoc shape :bool-content []) + + (and (cfh/path-shape? shape) + (not (contains? shape :content))) + (assoc shape :content []) + + :else shape)) (update-container [container]