change m for million to upper case

This commit is contained in:
HF 2020-11-30 00:44:57 +01:00
parent 64d94fb246
commit 26d73b6ffd

View File

@ -183,7 +183,7 @@ export function durationToString(
return timestring;
}
const postfix = ['k', 'm', 'M'];
const postfix = ['k', 'M', 'B'];
export function numberToString(num: number): string {
if (!num) {
return 'N/A';