mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 05:35:05 +08:00
rounding time on the account
This commit is contained in:
parent
4be9a686c4
commit
1eda09ea39
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export function update(): void {
|
|||
if (seconds === 0) {
|
||||
string = "-";
|
||||
} else {
|
||||
string = Misc.secondsToString(seconds, true, true);
|
||||
string = Misc.secondsToString(Math.round(seconds), true, true);
|
||||
}
|
||||
$(".pageAccount .globalTimeTyping .val").text(string);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue