Skip to content

Commit

Permalink
fix for CXINT-2642 (#18093)
Browse files Browse the repository at this point in the history
  • Loading branch information
anjana-bl authored Nov 13, 2023
1 parent 604fb81 commit 83cd58f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ng-container *ngFor="let consignment of consignments">
<ng-container *ngFor="let consignment of consignments; index as i">
<!--
example:
Consignment 1 | In Process | Last Updated: 13, September, 2023
Expand All @@ -18,7 +18,7 @@
>
{{
'myAccountV2OrderHistory.consignmentCode'
| cxTranslate: { param: getConsignmentNumber(consignment?.code) }
| cxTranslate: { param: i + 1 }
}}
</span>
|
Expand Down

0 comments on commit 83cd58f

Please sign in to comment.