Browse Source

Fixed invalid number format in webspa (#1496)

pull/1501/head
Sumit Ghosh 4 years ago
committed by GitHub
parent
commit
d910eb416d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Web/WebSPA/Client/modules/catalog/catalog.component.html

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

@ -40,7 +40,7 @@
<span>{{item.name}}</span>
</div>
<div class="esh-catalog-price">
<span>{{item.price | number:'3.2-2'}}</span>
<span>{{item.price | number:'.2-2'}}</span>
</div>
</div>
</div>


Loading…
Cancel
Save