Skip to content

Commit

Permalink
fix(Marketplace): format earning values
Browse files Browse the repository at this point in the history
  • Loading branch information
BreadGenie committed Jul 2, 2024
1 parent 6745a47 commit f8e2214
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions dashboard/src2/components/marketplace/MarketplaceAppAnalytics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,19 @@
<div>
<div class="leading-4">
<span class="text-base text-gray-900">
₹{{ installAnalytics.total_payout.inr_amount || 0 }}
{{
$format.currency(
installAnalytics.total_payout.inr_amount || 0,
'INR'
)
}}
<span class="text-sm text-gray-500">+</span>
${{ installAnalytics.total_payout.usd_amount || 0 }}
{{
$format.currency(
installAnalytics.total_payout.usd_amount || 0,
'USD'
)
}}
</span>
</div>
</div>
Expand Down

0 comments on commit f8e2214

Please sign in to comment.