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)} +
)}