From ad680ae108de2b0e98fe6373f2fa7821bffbf3b4 Mon Sep 17 00:00:00 2001 From: Philippe Parage <69145356+pparage@users.noreply.github.com> Date: Sat, 30 May 2026 09:34:21 +0200 Subject: [PATCH] fix: wrap long server names and keep actions menu visible (#4434) On settings/servers, a long server name in the card title (h3) did not wrap and overflowed its container, overlapping nearby content and squeezing the three-dots actions menu until it disappeared. Allow the title block to shrink and wrap (min-w-0 + break-words), keep the server icon and the actions trigger from being crushed (shrink-0), and add gap between the title and the actions button. --- .../dashboard/settings/servers/show-servers.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx b/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx index 1326c554a..832d04759 100644 --- a/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx +++ b/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx @@ -131,10 +131,10 @@ export const ShowServers = () => { className="relative hover:shadow-lg transition-shadow flex flex-col bg-transparent" > -
-
- - +
+
+ + {server.name}
@@ -145,7 +145,7 @@ export const ShowServers = () => {