From 896602903fe074a1bed79a8c8869148a845f7d65 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 21 Sep 2023 11:56:41 +0200 Subject: [PATCH] :bug: Fix incorrect value processing on attrs->props Causes unexpected exception on saving migrated files --- common/src/app/common/svg.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/svg.cljc b/common/src/app/common/svg.cljc index b1facba03..20ee86d94 100644 --- a/common/src/app/common/svg.cljc +++ b/common/src/app/common/svg.cljc @@ -596,7 +596,7 @@ (contains? svg-present-list k)) (cond (= k :class) - (assoc res :className val) + (assoc res :className v) (= k :style) (let [v (if (string? v) (parse-style v) v)]