From 68c0d93f91d582244004dae361a8d04b2068f5c9 Mon Sep 17 00:00:00 2001 From: Akshay Gupta Date: Tue, 13 Aug 2024 21:12:38 +0530 Subject: [PATCH] change sets list div to ul --- frontend/src/app/main/ui/workspace/tokens/sets.cljs | 2 +- 1 file changed, 1 insertion(+), 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 1a9fe3c6d..c625a0316 100644 --- a/frontend/src/app/main/ui/workspace/tokens/sets.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/sets.cljs @@ -92,7 +92,7 @@ (if (contains? active-sets set-id) (swap! active-sets disj set-id) (swap! active-sets conj set-id)))] - [:div {:class (stl/css :sets-list)} + [:ul {:class (stl/css :sets-list)} (for [set-id sets-root-order] ^{:key (str set-id)} [:& sets-tree {:key (str set-id) :set-id set-id :current-set-id current-set-id}])]))