From 563f60825551401ec62bae5e17ab251bb3bc8f15 Mon Sep 17 00:00:00 2001 From: Xavier Julian Date: Wed, 10 Sep 2025 13:24:24 +0200 Subject: [PATCH] :bug: Display token themes as a string --- .../app/main/ui/inspect/styles/panels/tokens_panel.cljs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/main/ui/inspect/styles/panels/tokens_panel.cljs b/frontend/src/app/main/ui/inspect/styles/panels/tokens_panel.cljs index 7ab0c72804..415350b769 100644 --- a/frontend/src/app/main/ui/inspect/styles/panels/tokens_panel.cljs +++ b/frontend/src/app/main/ui/inspect/styles/panels/tokens_panel.cljs @@ -10,11 +10,10 @@ [{:keys [theme-paths set-names]}] [:div {:class (stl/css :tokens-panel)} (when (seq theme-paths) - (for [theme theme-paths] - [:> properties-row* {:key theme - :class (stl/css :token-theme) + (let [theme-list (str/join ", " theme-paths)] + [:> properties-row* {:class (stl/css :token-theme) :term (tr "inspect.tabs.styles.panel.tokens.active-themes") - :detail theme}])) + :detail theme-list}])) (when (seq set-names) (let [sets-list (str/join ", " set-names)] [:> properties-row* {:class (stl/css :token-theme)