mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-30 10:47:22 +08:00
fix(account page): inconsistent accuracy number on pb tables
This commit is contained in:
parent
73953187e1
commit
b8e6f8da20
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ function buildPbHtml(
|
|||
if (Config.alwaysShowDecimalPlaces) {
|
||||
accString = Misc.roundTo2(accString).toFixed(2);
|
||||
} else {
|
||||
accString = Math.round(accString);
|
||||
accString = Math.floor(accString);
|
||||
}
|
||||
}
|
||||
accString += ` acc`;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue