From 87ab72adc1cd74e219fe9a22bd6fd5f0c5bdf562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Wed, 8 Apr 2026 14:03:37 -0400 Subject: [PATCH 1/2] fix(traces): remove extra flex height stretch from logs table --- static/app/views/performance/newTraceDetails/traceOurlogs.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/static/app/views/performance/newTraceDetails/traceOurlogs.tsx b/static/app/views/performance/newTraceDetails/traceOurlogs.tsx index 6f0a5c9c6c78db..63c8c6eaedab9e 100644 --- a/static/app/views/performance/newTraceDetails/traceOurlogs.tsx +++ b/static/app/views/performance/newTraceDetails/traceOurlogs.tsx @@ -87,7 +87,6 @@ const TableContainer = styled('div')` margin-top: ${p => p.theme.space.xl}; display: flex; flex-direction: column; - flex: 1; min-height: 0; `; From b7f7d58c02e97393dea518a3da527d199b797a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Wed, 8 Apr 2026 15:24:27 -0400 Subject: [PATCH 2/2] Switch to align-content: start --- static/app/views/explore/logs/styles.tsx | 1 + static/app/views/performance/newTraceDetails/traceOurlogs.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/static/app/views/explore/logs/styles.tsx b/static/app/views/explore/logs/styles.tsx index d6b05ecb5fe43c..032f21c3bd6b03 100644 --- a/static/app/views/explore/logs/styles.tsx +++ b/static/app/views/explore/logs/styles.tsx @@ -153,6 +153,7 @@ export const LogTableBody = styled(TableBody)<{ padding-top: ${p.theme.space.md}; padding-bottom: ${p.theme.space.md}; `} + align-content: start; overflow-x: hidden; overflow-anchor: none; diff --git a/static/app/views/performance/newTraceDetails/traceOurlogs.tsx b/static/app/views/performance/newTraceDetails/traceOurlogs.tsx index 63c8c6eaedab9e..6f0a5c9c6c78db 100644 --- a/static/app/views/performance/newTraceDetails/traceOurlogs.tsx +++ b/static/app/views/performance/newTraceDetails/traceOurlogs.tsx @@ -87,6 +87,7 @@ const TableContainer = styled('div')` margin-top: ${p => p.theme.space.xl}; display: flex; flex-direction: column; + flex: 1; min-height: 0; `;