mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-09 13:44:29 +08:00
not showing _ in funbox name
This commit is contained in:
parent
fa8149bf16
commit
eb2510e3fb
1 changed files with 1 additions and 1 deletions
|
|
@ -2133,7 +2133,7 @@ function showResult(difficultyFailed = false) {
|
|||
// testType += "<br>read_ahead";
|
||||
// }
|
||||
if (activeFunBox !== "none") {
|
||||
testType += "<br>" + activeFunBox;
|
||||
testType += "<br>" + activeFunBox.replace(/_/g, " ");
|
||||
}
|
||||
if (config.difficulty == "expert") {
|
||||
testType += "<br>expert";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue