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)