mirror of
https://github.com/penpot/penpot.git
synced 2025-01-20 13:42:59 -05:00
♻ Use dm/str
This commit is contained in:
parent
5bac53ea03
commit
6e7a5e5c7f
1 changed files with 2 additions and 1 deletions
|
@ -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?)
|
||||
|
|
Loading…
Add table
Reference in a new issue