From 534701f04f34b7568b556a17376f85aa6bb5ac1f Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Tue, 21 Apr 2026 16:49:07 +0200 Subject: [PATCH] :bug: Fix org options space should be hidden when there are no options --- frontend/src/app/main/ui/dashboard/sidebar.cljs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/main/ui/dashboard/sidebar.cljs b/frontend/src/app/main/ui/dashboard/sidebar.cljs index d1c055bedf..9663111d98 100644 --- a/frontend/src/app/main/ui/dashboard/sidebar.cljs +++ b/frontend/src/app/main/ui/dashboard/sidebar.cljs @@ -782,9 +782,8 @@ [:span {:class (stl/css :team-text)} (:name current-org)]])] arrow-icon] - (if (or default-org? - (= (:id profile) (:owner-id current-org))) - [:div {:class (stl/css :org-options)}] + (when-not (or default-org? + (= (:id profile) (:owner-id current-org))) [:> button* {:variant "ghost" :type "button" :class (stl/css :org-options-btn)