mirror of https://github.com/Lissy93/dashy.git
🐛 Fix hardcoded usd currency
This commit is contained in:
parent
0a639b0f08
commit
e3c7dc0f5d
|
@ -9,7 +9,7 @@
|
|||
>
|
||||
<img class="icon" :src="asset.image" :alt="`${asset} icon`" />
|
||||
<p class="name">{{ asset.name }}</p>
|
||||
<p class="price">{{ asset.price | formatPrice }}</p>
|
||||
<p class="price">{{ asset.price | formatPrice(currency) }}</p>
|
||||
<p :class="`percent ${asset.percentChange > 0 ? 'up' : 'down'}`">
|
||||
{{ asset.percentChange | formatPercentage }}
|
||||
</p>
|
||||
|
@ -70,8 +70,9 @@ export default {
|
|||
},
|
||||
filters: {
|
||||
/* Append currency symbol to price */
|
||||
formatPrice(price) {
|
||||
return `${findCurrencySymbol('usd')}${putCommasInBigNum(roundPrice(price))}`;
|
||||
formatPrice(price, currency) {
|
||||
if (currency === undefined) return '';
|
||||
return `${findCurrencySymbol(currency)}${putCommasInBigNum(roundPrice(price))}`;
|
||||
},
|
||||
/* Append percentage symbol, and up/ down arrow */
|
||||
formatPercentage(change) {
|
||||
|
|
Loading…
Reference in New Issue