Skip to content

Commit dfdafad

Browse files
committed
fix(loans): fix duplicate routerLinkActive variables, wrong tab labels and i18n key in loans-view
fix(loans): fix duplicate routerLinkActive variables and wrong tab labels in loans-view fix(loans): use correct i18n key for Deferred income tab label
1 parent 9911030 commit dfdafad

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/app/loans/loans-view/loans-view.component.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,10 @@ <h3>{{ 'labels.heading.Account Overview' | translate }}</h3>
281281
productType: loanProductService.productType.value
282282
}"
283283
routerLinkActive
284-
#general="routerLinkActive"
285-
[active]="general.isActive"
284+
#originalSchedule="routerLinkActive"
285+
[active]="originalSchedule.isActive"
286286
>
287-
{{ 'labels.inputs.General' | translate }}
287+
{{ 'labels.inputs.Original Schedule' | translate }}
288288
</a>
289289
}
290290
<a
@@ -307,8 +307,8 @@ <h3>{{ 'labels.heading.Account Overview' | translate }}</h3>
307307
productType: loanProductService.productType.value
308308
}"
309309
routerLinkActive
310-
#dashboard="routerLinkActive"
311-
[active]="dashboard.isActive"
310+
#transactions="routerLinkActive"
311+
[active]="transactions.isActive"
312312
>
313313
{{ 'labels.inputs.Transactions' | translate }}
314314
</a>
@@ -321,10 +321,10 @@ <h3>{{ 'labels.heading.Account Overview' | translate }}</h3>
321321
productType: loanProductService.productType.value
322322
}"
323323
routerLinkActive
324-
#accountdetail="routerLinkActive"
325-
[active]="accountdetail.isActive"
324+
#deferredIncome="routerLinkActive"
325+
[active]="deferredIncome.isActive"
326326
>
327-
{{ 'labels.inputs.Account Details' | translate }}
327+
{{ 'labels.inputs.Deferred income' | translate }}
328328
</a>
329329
}
330330
@if (loanProductService.isLoanProduct && loanDetailsData.enableBuyDownFee) {

0 commit comments

Comments
 (0)