From c3887af5d1f37108126a4f34ea7b503aeb2fc34d Mon Sep 17 00:00:00 2001 From: Khiet Tam Nguyen Date: Tue, 11 Mar 2025 12:42:21 +1100 Subject: [PATCH] fix: truncate domain overflow for external links --- apps/dokploy/components/dashboard/projects/show.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dokploy/components/dashboard/projects/show.tsx b/apps/dokploy/components/dashboard/projects/show.tsx index 188ee60d..b3caef7d 100644 --- a/apps/dokploy/components/dashboard/projects/show.tsx +++ b/apps/dokploy/components/dashboard/projects/show.tsx @@ -186,7 +186,7 @@ export const ShowProjects = () => { target="_blank" href={`${domain.https ? "https" : "http"}://${domain.host}${domain.path}`} > - {domain.host} + {domain.host} @@ -222,7 +222,7 @@ export const ShowProjects = () => { target="_blank" href={`${domain.https ? "https" : "http"}://${domain.host}${domain.path}`} > - {domain.host} + {domain.host}