From 43fa8c675e2ae220ca9a7b614f80d592e536f1f8 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 16 Jun 2026 07:02:32 -0600 Subject: [PATCH] fix: prevent request path truncation in request logs The RequestPath in the request log table was truncated to 82 characters with an ellipsis when it exceeded 100 characters, hiding part of the route. Show the full path and let it wrap with flex-wrap and break-all. Fixes #4642 --- apps/dokploy/components/dashboard/requests/columns.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/dokploy/components/dashboard/requests/columns.tsx b/apps/dokploy/components/dashboard/requests/columns.tsx index 2ad2455ba..7322dc098 100644 --- a/apps/dokploy/components/dashboard/requests/columns.tsx +++ b/apps/dokploy/components/dashboard/requests/columns.tsx @@ -69,14 +69,12 @@ export const columns: ColumnDef[] = [ const log = row.original; return (
-
+
{log.RequestMethod}{" "}
{log.RequestAddr}
- {log.RequestPath.length > 100 - ? `${log.RequestPath.slice(0, 82)}...` - : log.RequestPath} + {log.RequestPath}