From 1bf661b621829f43f895c9b68a1e15f89cdc6c5c Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Tue, 30 Jun 2026 16:19:52 -0600 Subject: [PATCH] fix: prevent request path truncation in request logs (#4643) 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}