From 968ea60c60b004e05ebc8b0f6d551ff7e6d45068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Mon, 2 Feb 2026 02:18:24 +0000 Subject: [PATCH] Fix expanded logs horizontal overflow Co-Authored-By: Claude Opus 4.5 --- src/components/DeploymentLogs.tsx | 2 +- src/components/DeploymentsTable.tsx | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/DeploymentLogs.tsx b/src/components/DeploymentLogs.tsx index 6e2100a..9669156 100644 --- a/src/components/DeploymentLogs.tsx +++ b/src/components/DeploymentLogs.tsx @@ -109,7 +109,7 @@ export function DeploymentLogs({ deploymentUuid, status, initialLogs }: Deployme ref={containerRef} onScroll={handleScroll} onClick={(e) => e.stopPropagation()} - className="max-h-80 overflow-y-auto font-mono text-xs p-4 space-y-0.5" + className="max-h-80 overflow-y-auto overflow-x-auto font-mono text-xs p-4 space-y-0.5" > {logs.length === 0 ? (
diff --git a/src/components/DeploymentsTable.tsx b/src/components/DeploymentsTable.tsx index e77e39e..bd697bd 100644 --- a/src/components/DeploymentsTable.tsx +++ b/src/components/DeploymentsTable.tsx @@ -358,8 +358,10 @@ export function DeploymentsTable({ deployments, isLoading, onRefresh }: Deployme {row.getIsExpanded() && ( - - {renderExpandedRow(row)} + +
+ {renderExpandedRow(row)} +
)}