Skip to content

Commit 3ef6846

Browse files
Minor change in label
1 parent 63eed87 commit 3ef6846

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<div class="esh-basket-items--border row">
3939
@if (item.OldUnitPrice != 0)
4040
{
41-
<div class="alert alert-warning esh-basket-margin12" role="alert">&nbsp;Note that the price of this article changed in our Catalog. The old price when you originally added it to the basket was @item.OldUnitPrice $</div>
41+
<div class="alert alert-warning esh-basket-margin12" role="alert">&nbsp;Note that the price of this article changed in our Catalog. The old price when you originally added it to the basket was $@item.OldUnitPrice </div>
4242
}
4343
</div>
4444
<br/>

src/Web/WebSPA/Client/modules/basket/basket.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</article>
3030
<br/>
3131
<div class="esh-basket-items-margin-left1 row">
32-
<div class="alert alert-warning" role="alert" *ngIf="item.oldUnitPrice > 0">&nbsp;Note that the price of this article changed in our Catalog. The old price when you originally added it to the basket was {{item.oldUnitPrice}} $</div>
32+
<div class="alert alert-warning" role="alert" *ngIf="item.oldUnitPrice > 0">&nbsp;Note that the price of this article changed in our Catalog. The old price when you originally added it to the basket was ${{item.oldUnitPrice}} </div>
3333
</div>
3434
</div>
3535
</div>

0 commit comments

Comments
 (0)