From 6e7a5e5c7f9d25a28b399cd2e9d172e11a7212da Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Tue, 10 Dec 2024 17:15:40 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=20Use=20dm/str?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/app/main/ui/workspace/tokens/sets.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/sets.cljs b/frontend/src/app/main/ui/workspace/tokens/sets.cljs index 670cff3feb..1f75103a36 100644 --- a/frontend/src/app/main/ui/workspace/tokens/sets.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/sets.cljs @@ -7,6 +7,7 @@ (ns app.main.ui.workspace.tokens.sets (:require-macros [app.main.style :as stl]) (:require + [app.common.data.macros :as dm] [app.common.types.tokens-lib :as ctob] [app.main.data.tokens :as wdt] [app.main.refs :as refs] @@ -65,7 +66,7 @@ mixed? (= checked "mixed") checked? (or all? mixed?)] [:div {:role "checkbox" - :aria-checked (str checked) + :aria-checked (dm/str checked) :tabindex 0 :class (stl/css-case :checkbox-style true :checkbox-checked-style checked?)