From cd4847ca22d4866c19e05e9100f4509fc4a2fc22 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 11 Jul 2024 15:46:33 -0400 Subject: [PATCH] assistant: Use a more generic icon for the `/docs` command (#14247) This PR updates the `/docs` slash command to use a more generic icon to convey docs. It was still using the Rust icon, a relic of when it was still `/rustdoc`. Release Notes: - N/A --- crates/assistant/src/slash_command/docs_command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/assistant/src/slash_command/docs_command.rs b/crates/assistant/src/slash_command/docs_command.rs index 53b02eb128..831b4210ff 100644 --- a/crates/assistant/src/slash_command/docs_command.rs +++ b/crates/assistant/src/slash_command/docs_command.rs @@ -216,7 +216,7 @@ impl SlashCommand for DocsSlashCommand { text, sections: vec![SlashCommandOutputSection { range, - icon: IconName::FileRust, + icon: IconName::FileDoc, label: format!("docs ({provider}): {path}",).into(), }], run_commands_in_text: false,