add the ability to get the raw count for downloads

This commit is contained in:
jliddev
2020-11-22 16:59:26 -06:00
parent 11821eae4d
commit bc48ed17f9

View File

@@ -14,6 +14,7 @@ export class DownloadCountPipe implements PipeTransform {
return suffix
? this.translateService.instant("COMMON.DOWNLOAD_COUNT." + suffix, {
rawCount: value,
count: shortenDownloadCount(value, 3),
simpleCount: shortenDownloadCount(value, 1),
myriadCount: shortenDownloadCount(value, 4),