Skip to content

Commit

Permalink
Fix for Loan summary principal writtenoff value
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Alberto Hernandez authored and Jose Alberto Hernandez committed Aug 18, 2022
1 parent 767786c commit 6fdc4d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/loans/loans-view/general-tab/general-tab.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export class GeneralTabComponent implements OnInit {
'property': 'Principal',
'original': this.loanDetails.summary.principalDisbursed,
'paid': this.loanDetails.summary.principalPaid,
'waived': this.loanDetails.summary.principalWrittenOff,
'writtenOff': this.loanDetails.summary.principalOutstanding,
'waived': this.loanDetails.summary.principalWaived || 0,
'writtenOff': this.loanDetails.summary.principalWrittenOff,
'outstanding': this.loanDetails.summary.principalOutstanding,
'overdue': this.loanDetails.summary.principalOverdue,

Expand Down

0 comments on commit 6fdc4d9

Please sign in to comment.