From 0794f97a50fdcbf40513ccc78a1f9020b3d3453b Mon Sep 17 00:00:00 2001 From: Benjamin Wilson Date: Sat, 1 Feb 2025 15:33:42 -0500 Subject: [PATCH] number suffix --- src/app/pipes/number-suffix.pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pipes/number-suffix.pipe.ts b/src/app/pipes/number-suffix.pipe.ts index 6041622..04ed198 100644 --- a/src/app/pipes/number-suffix.pipe.ts +++ b/src/app/pipes/number-suffix.pipe.ts @@ -8,7 +8,7 @@ export class NumberSuffixPipe implements PipeTransform { transform(value: number): string { - const suffixes = ['', 'k', 'M', 'G', 'T', 'P', 'E']; + const suffixes = ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y', 'R', 'Q']; if (value == null || value < 0) { return '0';