From ae3213f5d41ae46f1a030ff0af37ac737946ed01 Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Mon, 21 Jul 2025 12:21:37 +0200 Subject: [PATCH] :bug: Fix text override corner case --- common/src/app/common/types/text.cljc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/types/text.cljc b/common/src/app/common/types/text.cljc index 71c6fd876b..efc1df0bad 100644 --- a/common/src/app/common/types/text.cljc +++ b/common/src/app/common/types/text.cljc @@ -127,7 +127,8 @@ entries" [a b] (cond - (not= (type a) (type b)) + (and (not= (type a) (type b)) + (not (and (map? a) (map? b)))) ;; Sometimes they are both maps but of different subtypes false (map? a)