diff --git a/crates/assistant2/src/thread_history.rs b/crates/assistant2/src/thread_history.rs index 9d069da0e1d9b772d0dc81d50c1f52a87db29c20..95fa5ef5482e0ec9be15506f874a5c8f711493aa 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() },