From 58cb7af674f16ee336053da2a7bede999a8f3c65 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 23 Nov 2023 13:03:30 +0100 Subject: [PATCH 1/2] :bug: Fix problem with select --- frontend/resources/styles/common/refactor/basic-rules.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/resources/styles/common/refactor/basic-rules.scss b/frontend/resources/styles/common/refactor/basic-rules.scss index 0cb5aea6fc..cd3b867629 100644 --- a/frontend/resources/styles/common/refactor/basic-rules.scss +++ b/frontend/resources/styles/common/refactor/basic-rules.scss @@ -854,5 +854,4 @@ align-items: center; justify-content: normal; width: 100%; - overflow: hidden; } From fcbebf0f825c5a58252a178c8ddf0961424811f4 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Mon, 4 Dec 2023 09:58:25 +0100 Subject: [PATCH 2/2] :bug: Fix problem when duplicating grid --- common/src/app/common/types/shape/layout.cljc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/types/shape/layout.cljc b/common/src/app/common/types/shape/layout.cljc index 45e041a80e..4b76a5964b 100644 --- a/common/src/app/common/types/shape/layout.cljc +++ b/common/src/app/common/types/shape/layout.cljc @@ -1231,5 +1231,6 @@ (update :shapes #(mapv ids-map %)))) shape (-> shape - (update :layout-grid-cells update-vals do-remap-cells))] + (update :layout-grid-cells update-vals do-remap-cells) + (check-deassigned-cells))] shape))