diff --git a/crates/assistant2/src/thread_history.rs b/crates/assistant2/src/thread_history.rs index 9d069da0e1..95fa5ef548 100644 --- a/crates/assistant2/src/thread_history.rs +++ b/crates/assistant2/src/thread_history.rs @@ -66,10 +66,10 @@ impl Render for ThreadHistory { threads[range] .iter() .map(|thread| { - PastThread::new( + h_flex().w_full().pb_1().child(PastThread::new( thread.clone(), history.assistant_panel.clone(), - ) + )) }) .collect() },