Skip to content

Commit

Permalink
Support Chargeback for different Loan transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Alberto Hernandez authored and alberto-art3ch committed Jun 26, 2024
1 parent 006c968 commit e216c4b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export class ViewTransactionComponent implements OnInit {
});
this.clientId = this.route.snapshot.params['clientId'];
this.loanId = this.route.snapshot.params['loanId'];
console.log(this.transactionType);
}

ngOnInit(): void {
Expand Down Expand Up @@ -176,7 +177,7 @@ export class ViewTransactionComponent implements OnInit {
})
];
const data = {
title: 'Chargeback Repayment Transaction',
title: `Chargeback ${this.transactionType.value} Transaction`,
layout: { addButtonText: 'Chargeback' },
formfields: formfields
};
Expand Down

0 comments on commit e216c4b

Please sign in to comment.