mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-01-30 10:27:47 +08:00
feat: show tape mode used on result screen (@fehmer)
This commit is contained in:
parent
ebf98f15f6
commit
eb68ba7b91
1 changed files with 4 additions and 1 deletions
|
@ -158,7 +158,7 @@ async function updateGraph(): Promise<void> {
|
|||
borderRadius: 3,
|
||||
position: "start",
|
||||
display: true,
|
||||
content: `${content}`,
|
||||
content: content,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
@ -690,6 +690,9 @@ function updateTestType(randomQuote: Quote | null): void {
|
|||
if (Config.funbox !== "none") {
|
||||
testType += "<br>" + Config.funbox.replace(/_/g, " ").replace(/#/g, ", ");
|
||||
}
|
||||
if (Config.tapeMode !== "off") {
|
||||
testType += "<br> tape mode " + Config.tapeMode;
|
||||
}
|
||||
if (Config.difficulty === "expert") {
|
||||
testType += "<br>expert";
|
||||
} else if (Config.difficulty === "master") {
|
||||
|
|
Loading…
Reference in a new issue