assistant2: Add spacing between historical thread entries (#22140)

This PR adds spacing between entries in the historical threads view:

<img width="1371" alt="Screenshot 2024-12-17 at 10 51 26 AM"
src="https://github.com/user-attachments/assets/f66d69e9-eb59-4c76-b3b5-c4d60190c3cc"
/>

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-12-17 11:03:09 -05:00 committed by GitHub
parent 228c89a78a
commit a6b717b97b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,10 +66,10 @@ impl Render for ThreadHistory {
threads[range] threads[range]
.iter() .iter()
.map(|thread| { .map(|thread| {
PastThread::new( h_flex().w_full().pb_1().child(PastThread::new(
thread.clone(), thread.clone(),
history.assistant_panel.clone(), history.assistant_panel.clone(),
) ))
}) })
.collect() .collect()
}, },