From aa180e9f3f3d4707a377ce620961c8cf6dbd4d24 Mon Sep 17 00:00:00 2001 From: Andrey Fedorov Date: Fri, 14 Feb 2025 11:44:51 +0100 Subject: [PATCH] :bug: Fix `max-` `min-` `width` `height` not being applied --- frontend/src/app/main/ui/workspace/tokens/changes.cljs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/changes.cljs b/frontend/src/app/main/ui/workspace/tokens/changes.cljs index c9035c910..ff107cf63 100644 --- a/frontend/src/app/main/ui/workspace/tokens/changes.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/changes.cljs @@ -278,8 +278,9 @@ :layout-item-max-w value :layout-item-max-h value} (select-keys attributes))] - (dwsl/update-layout-child shape-ids props {:ignore-touched true - :page-id page-id})))))) + (rx/of + (dwsl/update-layout-child shape-ids props {:ignore-touched true + :page-id page-id}))))))) ;; Token Types -----------------------------------------------------------------