rounding time on the account

This commit is contained in:
Miodec 2022-02-24 12:39:20 +01:00
parent 4be9a686c4
commit 1eda09ea39

View file

@ -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);
}