Satoshi display fixed in Items List Display
This commit is contained in:
parent
4f498c4c49
commit
299cae0c80
2 changed files with 2 additions and 1 deletions
|
@ -47,7 +47,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p class="rv_price"
|
<p class="rv_price"
|
||||||
*ngIf="owner.zats">
|
*ngIf="owner.zats">
|
||||||
ⓩ{{(item.cost/zecPrice)*100000000 | number: '1.0-0'}}
|
ⓩ {{ ((item.cost/zecPrice)*100000000).toString().substring( 0, ((item.cost/zecPrice)*100000000 ).toString().indexOf('.')) }} [{{item.cost | number: '1.02' | currency: getCurrency() }}]
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -65,6 +65,7 @@ export class ItemListComponent implements OnInit{
|
||||||
itemlistNotifClose : '',
|
itemlistNotifClose : '',
|
||||||
itemlistNotifSuccess : ''
|
itemlistNotifSuccess : ''
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// ------------------------------------------------------------
|
// ------------------------------------------------------------
|
||||||
constructor(
|
constructor(
|
||||||
|
|
Loading…
Reference in a new issue