mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
replacing _ in keymap space
This commit is contained in:
parent
675bcab67d
commit
6c4e7399c9
1 changed files with 1 additions and 1 deletions
|
@ -1318,7 +1318,7 @@ function changeKeymapLayout(layout, nosave) {
|
|||
$(".keymap .r1").addClass("hidden");
|
||||
}
|
||||
|
||||
$($(".keymap .r5 .keymap-key .letter")[0]).text(layout);
|
||||
$($(".keymap .r5 .keymap-key .letter")[0]).text(layout.replace(/_/g, " "));
|
||||
|
||||
keymapShowIsoKey(layouts[layout].iso);
|
||||
|
||||
|
|
Loading…
Reference in a new issue