From 8c58ed80ac801ee6113145aab8d4301be2783c0e Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Mon, 30 Sep 2024 08:31:18 +0200 Subject: [PATCH] Fix id --- frontend/src/app/main/ui/workspace/tokens/sidebar.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs b/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs index bb67de78b..3c1750858 100644 --- a/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs @@ -140,7 +140,7 @@ (for [token (sort-by :modified-at tokens)] (let [theme-token (get active-theme-tokens (wtt/token-identifier token))] [:& token-pill - {:key (:id token) + {:key (:name token) :token token :theme-token theme-token :highlighted? (wtt/shapes-token-applied? token selected-shapes (or all-attributes attributes))