From 9d8628b4cc150f1270580a07539cf2e800ed2100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Moya?= Date: Mon, 8 Jan 2024 16:23:36 +0100 Subject: [PATCH] :bug: Fix groups without :shapes when converting to frames in migration --- backend/src/app/features/components_v2.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/app/features/components_v2.clj b/backend/src/app/features/components_v2.clj index 45c196f47..c85719b83 100644 --- a/backend/src/app/features/components_v2.clj +++ b/backend/src/app/features/components_v2.clj @@ -255,6 +255,7 @@ (assoc shape :type :frame ; Old groups must be converted :fills (or (:fills shape) []) ; to frames and conform to spec + :shapes (or (:shapes shape) []) :hide-in-viewer (or (:hide-in-viewer shape) true) :rx (or (:rx shape) 0) :ry (or (:ry shape) 0))