Fixed cart page
This commit is contained in:
parent
defb2a8fc8
commit
04aa8b165e
@ -14,7 +14,7 @@
|
|||||||
<tr *ngFor="let item of cart; let i = index">
|
<tr *ngFor="let item of cart; let i = index">
|
||||||
<td>{{i + 1}}</td>
|
<td>{{i + 1}}</td>
|
||||||
<td>
|
<td>
|
||||||
<a [routerL ink]="['/products', item.item]">{{item.item}}</a>
|
<a [routerLink]="['/products', item.item]">{{item.item}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{item.quantity}}</td>
|
<td>{{item.quantity}}</td>
|
||||||
<td>{{item.currency}} {{item.price | currency}}</td>
|
<td>{{item.currency}} {{item.price | currency}}</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user