From a6b717b97b725b11116a2a1e66d3b9e5e6b20718 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 17 Dec 2024 11:03:09 -0500 Subject: [PATCH] assistant2: Add spacing between historical thread entries (#22140) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR adds spacing between entries in the historical threads view: Screenshot 2024-12-17 at 10 51 26 AM Release Notes: - N/A --- crates/assistant2/src/thread_history.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() },