From f859b328f0d057dcf3279c7a9026916a7cc6d6ed Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 1 Apr 2025 12:54:40 -0400 Subject: [PATCH] assistant2: Use "Agent Panel" nomenclature for panel tooltip (#27858) This PR updates the Agent Panel tooltip in the status to use "Agent Panel" instead of "Assistant Panel". Also changes the name we use in workspace serialization. Release Notes: - N/A --- crates/assistant2/src/assistant_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/assistant2/src/assistant_panel.rs b/crates/assistant2/src/assistant_panel.rs index 713c391cdd..9341a7a323 100644 --- a/crates/assistant2/src/assistant_panel.rs +++ b/crates/assistant2/src/assistant_panel.rs @@ -607,7 +607,7 @@ impl EventEmitter for AssistantPanel {} impl Panel for AssistantPanel { fn persistent_name() -> &'static str { - "AssistantPanel2" + "AgentPanel" } fn position(&self, _window: &Window, cx: &App) -> DockPosition { @@ -667,7 +667,7 @@ impl Panel for AssistantPanel { } fn icon_tooltip(&self, _window: &Window, _cx: &App) -> Option<&'static str> { - Some("Assistant Panel") + Some("Agent Panel") } fn toggle_action(&self) -> Box {