From 81a04d077735e6bf89e32b97c02d4125003afba6 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Fri, 13 Feb 2026 00:19:08 -0600 Subject: [PATCH] feat(sidebar): enhance dropdown menu styling and organization display - Updated the dropdown menu to have a maximum height and added overflow handling for better usability. - Adjusted the layout of the organizations list to ensure proper display and scrolling behavior. --- apps/dokploy/components/layouts/side.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/dokploy/components/layouts/side.tsx b/apps/dokploy/components/layouts/side.tsx index 52f8b5bfb..0e7d0b9d0 100644 --- a/apps/dokploy/components/layouts/side.tsx +++ b/apps/dokploy/components/layouts/side.tsx @@ -630,15 +630,16 @@ function SidebarLogo() { - + Organizations - {organizations?.map((org) => { +
+ {organizations?.map((org) => { const isDefault = org.members?.[0]?.isDefault ?? false; return (
); })} +
{(user?.role === "owner" || user?.role === "admin" || isCloud) && (