Skip to content

Commit

Permalink
Loan product delinquency bucket should not be mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Alberto Hernandez authored and adamsaghy committed Dec 14, 2023
1 parent 1bb3079 commit 9e54d16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h4 fxFlex="98%" class="mat-h4">Moratorium <i class="fas fa-question" matTooltip

<mat-form-field fxFlex="48%">
<mat-label>Delinquency Bucket</mat-label>
<mat-select formControlName="delinquencyBucketId" required>
<mat-select formControlName="delinquencyBucketId">
<mat-option *ngFor="let delinquencyBucket of delinquencyBucketData" [value]="delinquencyBucket.id">
{{ delinquencyBucket.name }}
</mat-option>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export class LoanProductSettingsStepComponent implements OnInit {
'graceOnPrincipalAndInterestPayment': [true],
'graceOnArrearsAgeing': [true]
}),
'delinquencyBucketId': ['', Validators.required],
'delinquencyBucketId': [''],
'enableDownPayment': [false],
'enableInstallmentLevelDelinquency': [false],
'useDueForRepaymentsConfigurations': [false],
Expand Down

0 comments on commit 9e54d16

Please sign in to comment.