From 6b8f8592ea3d6a85a0430a621a370bc6ec8a822c Mon Sep 17 00:00:00 2001 From: "Moo, Kachon" Date: Thu, 23 Oct 2025 06:54:24 +0700 Subject: [PATCH] agent_ui: Remove ellipses from some menu entries (#40858) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit image Release Notes: This PR fixes inconsistent use of trailing ellipsis (…) in the MCP Server menu. Previously, some menu items (like Add Custom Server…) used hardcoded ellipses even though they didn’t trigger additional dialogs or steps. This change removes unnecessary ellipses to align with standard UI/UX conventions used across Zed’s menus. --------- Co-authored-by: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> --- crates/agent_ui/src/agent_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/agent_ui/src/agent_panel.rs b/crates/agent_ui/src/agent_panel.rs index 02403b0e8d48ed2bee58c79e15d27d28ae2b49d3..19f56b26b5b9621b92c307690baefd332da183b0 100644 --- a/crates/agent_ui/src/agent_panel.rs +++ b/crates/agent_ui/src/agent_panel.rs @@ -1663,7 +1663,7 @@ impl AgentPanel { .separator(); menu = menu - .action("Rules…", Box::new(OpenRulesLibrary::default())) + .action("Rules", Box::new(OpenRulesLibrary::default())) .action("Settings", Box::new(OpenSettings)) .separator() .action(full_screen_label, Box::new(ToggleZoom));