align suffix with industry standard

This commit is contained in:
Ben 2024-03-11 20:43:38 -04:00
parent ea4572c691
commit 88680e15c6

View File

@ -8,7 +8,7 @@ export class NumberSuffixPipe implements PipeTransform {
transform(value: number): string {
const suffixes = ['', 'k', 'M', 'B', 'T', 'P', 'E'];
const suffixes = ['', 'k', 'M', 'G', 'T', 'P', 'E'];
if (value == null || value < 0) {
return '0';