agent: Fix toolbar spacing (#28485)

Danilo Leal created

Release Notes:

- N/A

Change summary

crates/agent/src/assistant_panel.rs | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Detailed changes

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 => {