From 5d933fd7705b630858d684494e7c5d0a6da8eaa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Valderrama?= Date: Wed, 8 Jul 2026 15:43:36 +0200 Subject: [PATCH] :bug: Organizations list sorted by name (#10589) --- frontend/src/app/main/ui/dashboard/sidebar.cljs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/dashboard/sidebar.cljs b/frontend/src/app/main/ui/dashboard/sidebar.cljs index 9f81b51a19..420383aa60 100644 --- a/frontend/src/app/main/ui/dashboard/sidebar.cljs +++ b/frontend/src/app/main/ui/dashboard/sidebar.cljs @@ -801,7 +801,12 @@ :class (stl/css :dropdown :teams-dropdown) :organization current-org :profile profile - :organizations (vals orgs)}]]) + :organizations (->> (vals orgs) + (sort-by (juxt (fn [o] (str/lower (:name o ""))) + :id)))}]]) + + + orgs-portal-container))) ;; Orgs options [:> org-options-dropdown* {:show show-org-options-menu?