diff --git a/src/js/theme-controller.js b/src/js/theme-controller.js index b62d69373..b1e570d36 100644 --- a/src/js/theme-controller.js +++ b/src/js/theme-controller.js @@ -124,7 +124,7 @@ export function apply(themeName, isPreview = false) { } if (!isPreview) { ThemeColors.get().then((colors) => { - $(".current-theme .text").text(themeName.replace("_", " ")); + $(".current-theme .text").text(themeName.replace(/_/g, " ")); $(".keymap-key").attr("style", ""); ChartController.updateAllChartColors(); updateFavicon(128, 32);