From 9952cc9030c7472458129de5769da84e1a0e0906 Mon Sep 17 00:00:00 2001 From: Philippe Parage Date: Wed, 20 May 2026 13:01:55 +0200 Subject: [PATCH] fix: wrap long server names and keep actions menu visible 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 1326c554aa..832d047593 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 = () => {