From 5778e1e6f0b9e43219e4f8f0e6ada6fdfc766717 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 11 Feb 2025 09:09:03 -0500 Subject: [PATCH] theme: Fix Svelte file icon (#24650) This PR fixes the file icon used for Svelte files in the default icon theme, as I used the wrong icon name in #24644. Release Notes: - N/A --- crates/theme/src/icon_theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/theme/src/icon_theme.rs b/crates/theme/src/icon_theme.rs index 80ba4c20b0ffba1a7434a34f24f828cdc4f6de0e..cd6e5e5e58df8db8c8b607e19712e79c58142af8 100644 --- a/crates/theme/src/icon_theme.rs +++ b/crates/theme/src/icon_theme.rs @@ -113,7 +113,7 @@ const FILE_ICONS: &[(&str, &str)] = &[ ("scala", "icons/file_icons/scala.svg"), ("settings", "icons/file_icons/settings.svg"), ("storage", "icons/file_icons/database.svg"), - ("svelte", "icons/file_icons/template.svg"), + ("svelte", "icons/file_icons/html.svg"), ("swift", "icons/file_icons/swift.svg"), ("tcl", "icons/file_icons/tcl.svg"), ("template", "icons/file_icons/html.svg"),