Ensure raised amount is showing with correct precision in crowdfound app tooltip (#987)

fix #926
This commit is contained in:
Umar Bolatov
2019-08-30 00:17:17 -07:00
committed by Nicolas Dorier
parent 5b4e78f8d1
commit 8971dbc2f9

View File

@@ -128,8 +128,7 @@
<b-tooltip target="crowdfund-body-raised-amount" v-if="paymentStats && paymentStats.length > 0">
<ul class="p-0 text-uppercase">
<li v-for="stat of paymentStats" class="list-unstyled">
{{stat.label}} <span v-if="stat.lightning" class="fa fa-bolt"></span> {{stat.value}}
{{stat.label}} <span v-if="stat.lightning" class="fa fa-bolt"></span> {{stat.value.toFixed(srvModel.currencyData.divisibility)}}
</li>
</ul>
</b-tooltip>