We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20cebec + 70e2e5a commit 2c8c8c3Copy full SHA for 2c8c8c3
constants/master_en.json
@@ -595,6 +595,7 @@
595
"billing": {
596
"transfer": {
597
"account_to_creditcard": "Refund",
598
+ "admin_adjustment": "Adjustment applied by Permanent.org",
599
"creditcard_to_account": "Purchase",
600
"pledge_to_account": "Donation",
601
"account_to_pledge": "Donation failed",
src/app/shared/pipes/filesize.pipe.ts
@@ -24,7 +24,7 @@ export class FileSizePipe implements PipeTransform {
24
} else {
25
let unit = 0;
26
27
- while (bytes >= 1024) {
+ while (bytes >= 1024 || bytes <= -1024) {
28
bytes /= 1024;
29
unit += 1;
30
}
0 commit comments