mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
fixed not all _ replaced in the footer
This commit is contained in:
parent
0fdb74ce62
commit
9c9ec29c80
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue