From f2f909bd7ff038bba3be7bfcf172cd5d1979f38b Mon Sep 17 00:00:00 2001 From: Ramel Tecnologia - Rafa Martins <146174365+rafacpti23@users.noreply.github.com> Date: Sun, 14 Jun 2026 09:45:25 -0300 Subject: [PATCH] fix(ui): expand request log table height with vertical resize (#3820) The request log table is given a comfortable minimum height (~10 rows) and is user-resizable vertically, replacing the previous flex/overflow-hidden constraints that clipped it short. Pure layout change to the logs page and RequestLoggerV2 card. Integrated into release/v3.8.25. Co-authored-by: diegosouzapw --- src/app/(dashboard)/dashboard/logs/page.tsx | 4 ++-- src/shared/components/RequestLoggerV2.tsx | 12 +++++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/app/(dashboard)/dashboard/logs/page.tsx b/src/app/(dashboard)/dashboard/logs/page.tsx index df1790bd3c..4b88afde7e 100644 --- a/src/app/(dashboard)/dashboard/logs/page.tsx +++ b/src/app/(dashboard)/dashboard/logs/page.tsx @@ -118,7 +118,7 @@ export default function LogsPage() { } return ( -
+

{t("requestLogs")}

@@ -213,7 +213,7 @@ export default function LogsPage() {
)} -
+
diff --git a/src/shared/components/RequestLoggerV2.tsx b/src/shared/components/RequestLoggerV2.tsx index 89728e2322..111c2260a1 100644 --- a/src/shared/components/RequestLoggerV2.tsx +++ b/src/shared/components/RequestLoggerV2.tsx @@ -628,7 +628,7 @@ const RequestLoggerV2 = forwardRef +
{/* Header Bar */}
{/* Recording Toggle */} @@ -910,8 +910,14 @@ const RequestLoggerV2 = forwardRef {/* Table */} - -
+ +
{loading && logs.length === 0 ? (
{t("loadingLogs")}
) : logs.length === 0 ? (