From a3721f6ba595daeb3551e0e6d35f9b56aeed9f5c Mon Sep 17 00:00:00 2001 From: Adam Bowker Date: Fri, 12 Jun 2026 18:15:00 -0700 Subject: [PATCH] fix(tasks): prevent horizontal scroll in conversation/log list The virtualized conversation/raw-log scroll container used `overflow-auto`, which enabled horizontal scrolling whenever a child was wider than the container. At narrow widths (e.g. the task view at 2/3 width on a 16" MBP) this made the whole pane scroll sideways. Switch to `overflow-y-auto overflow-x-hidden`. Wide content already manages its own horizontal scroll within bounded children (raw log entries use a per-entry `overflow-x-auto`, code blocks scroll internally), so the outer virtualized container never needs to scroll horizontally. Generated-By: PostHog Code Task-Id: c71dfd67-8c74-489f-bbcd-904bb94d3584 --- .../ui/src/features/sessions/components/VirtualizedList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/features/sessions/components/VirtualizedList.tsx b/packages/ui/src/features/sessions/components/VirtualizedList.tsx index fcf6ffcdc9..9aabff1a6a 100644 --- a/packages/ui/src/features/sessions/components/VirtualizedList.tsx +++ b/packages/ui/src/features/sessions/components/VirtualizedList.tsx @@ -242,7 +242,7 @@ function VirtualizedListInner(