From abb6aee57dca19b9c4ca4d2763ad53b8035ad1da Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Mon, 7 Jul 2025 16:38:08 +0200 Subject: [PATCH] :bug: On texts overrides, keep also vertical-align property --- common/src/app/common/types/text.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/types/text.cljc b/common/src/app/common/types/text.cljc index 927c2ca36f..71c6fd876b 100644 --- a/common/src/app/common/types/text.cljc +++ b/common/src/app/common/types/text.cljc @@ -148,7 +148,7 @@ (cond (map? origin) (into {} - (for [k (keys origin) :when (not= k :key)] ;; We ignore :key because it is a draft artifact + (for [k (keys destiny) :when (not= k :key)] ;; We ignore :key because it is a draft artifact (cond (= :children k) [k (vec (map #(copy-text-keys %1 %2) (get origin k) (get destiny k)))]