Browse Source

Minor change in label

pull/223/head
Cesar De la Torre 7 years ago
parent
commit
33281474af
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
  2. +1
    -1
      src/Web/WebSPA/Client/modules/basket/basket.component.html

+ 1
- 1
src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml View File

@ -38,7 +38,7 @@
<div class="esh-basket-items--border row">
@if (item.OldUnitPrice != 0)
{
<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>
<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>
}
</div>
<br/>


+ 1
- 1
src/Web/WebSPA/Client/modules/basket/basket.component.html View File

@ -29,7 +29,7 @@
</article>
<br/>
<div class="esh-basket-items-margin-left1 row">
<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>
<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>
</div>
</div>
</div>


Loading…
Cancel
Save