From 2c402f9b5deab38e331248fe8d8d87dab5ab2926 Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Tue, 19 Dec 2023 10:03:26 -0500 Subject: [PATCH] Ensure conversation items fill the container --- crates/assistant2/src/assistant_panel.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/assistant2/src/assistant_panel.rs b/crates/assistant2/src/assistant_panel.rs index 4c1abbe4b8bd6f858878a2a2858e8c78954e2f98..ec2fa4fba05832cd678a1bf3b4ebaac2c1aa2649 100644 --- a/crates/assistant2/src/assistant_panel.rs +++ b/crates/assistant2/src/assistant_panel.rs @@ -1020,10 +1020,11 @@ impl AssistantPanel { this.open_conversation(path.clone(), cx) .detach_and_log_err(cx) })) + .full_width() .child( div() .flex() - .flex_1() + .w_full() .gap_2() .child( Label::new(conversation.mtime.format("%F %I:%M%p").to_string())