Satoshi display fixed in Items List Display

This commit is contained in:
Rene V. Vergara A. 2023-08-04 20:11:28 -05:00
parent 4f498c4c49
commit 299cae0c80
2 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,7 @@
</div> </div>
<p class="rv_price" <p class="rv_price"
*ngIf="owner.zats"> *ngIf="owner.zats">
&#x24e9;{{(item.cost/zecPrice)*100000000 | number: '1.0-0'}} &#x24e9; {{ ((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>

View File

@ -65,6 +65,7 @@ export class ItemListComponent implements OnInit{
itemlistNotifClose : '', itemlistNotifClose : '',
itemlistNotifSuccess : '' itemlistNotifSuccess : ''
} }
// //
// ------------------------------------------------------------ // ------------------------------------------------------------
constructor( constructor(