From e20daa763924d98bd566cf014d2fb9a8eb0d4cc9 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 10 Apr 2025 01:08:07 -0300 Subject: [PATCH] agent: Fix toolbar spacing (#28485) Release Notes: - N/A --- crates/agent/src/assistant_panel.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/agent/src/assistant_panel.rs b/crates/agent/src/assistant_panel.rs index 2c950184ac..6faa131df8 100644 --- a/crates/agent/src/assistant_panel.rs +++ b/crates/agent/src/assistant_panel.rs @@ -863,7 +863,11 @@ impl AssistantPanel { .truncate() .into_any_element() } else { - change_title_editor.clone().into_any_element() + div() + .ml_2() + .w_full() + .child(change_title_editor.clone()) + .into_any_element() } } ActiveView::PromptEditor => {