make acc chart 3 places
All checks were successful
Deploy Website / deploy (push) Successful in 5m19s
All checks were successful
Deploy Website / deploy (push) Successful in 5m19s
This commit is contained in:
parent
306269f1f9
commit
6cd141544c
@ -23,7 +23,7 @@ const datasetConfig: DatasetConfig[] = [
|
|||||||
displayName: "Average Ranked Accuracy",
|
displayName: "Average Ranked Accuracy",
|
||||||
position: "left",
|
position: "left",
|
||||||
},
|
},
|
||||||
labelFormatter: (value: number) => `Average Ranked Accuracy ${value.toFixed(4)}%`,
|
labelFormatter: (value: number) => `Average Ranked Accuracy ${value.toFixed(3)}%`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ const renderChange = (player: ScoreSaberPlayer, type: "rank" | "countryRank" | "
|
|||||||
if (value == 0) {
|
if (value == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return type == "pp" ? formatPp(value) : formatNumberWithCommas(value);
|
return type == "pp" ? formatPp(value) + "pp" : formatNumberWithCommas(value);
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
Reference in New Issue
Block a user