No longer answering with null, but 0
Some checks failed
continuous-integration/drone/pr Build is failing
Some checks failed
continuous-integration/drone/pr Build is failing
ref #193
This commit is contained in:
parent
30c6d3d8db
commit
49b174f29f
@ -55,7 +55,7 @@ export class ResponseDonation implements IResponse {
|
|||||||
this.id = donation.id;
|
this.id = donation.id;
|
||||||
this.donor = donation.donor.toResponse();
|
this.donor = donation.donor.toResponse();
|
||||||
this.amount = donation.amount;
|
this.amount = donation.amount;
|
||||||
this.payedAmount = donation.payedAmount;
|
this.payedAmount = donation.payedAmount || 0;
|
||||||
if (this.payedAmount < this.amount) {
|
if (this.payedAmount < this.amount) {
|
||||||
this.status = DonationStatus.OPEN;
|
this.status = DonationStatus.OPEN;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user