Skip to content

Commit

Permalink
Merge pull request #162 from Holo-Host/feature/update-histogram-design
Browse files Browse the repository at this point in the history
Feature/histogram chart design update
  • Loading branch information
mateuszRybczonek authored May 21, 2024
2 parents 39b9b3b + ec997db commit b8aaf60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/earnings/EarningsChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function presentCurrency(value: number): string {
}
if (value === 0) {
return '0 HF'
return '0'
}
const k = 1000
Expand Down
2 changes: 1 addition & 1 deletion src/components/earnings/EarningsData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const totalEarnings = computed(() =>
{{ t('earnings.earnings_in_the_past_days', { numberOfDays: 7 }) }}
</span>
<span class="weekly-earnings-data__header-label-bottom">
{{ t('earnings.totalling', { amount: formatCurrency(totalEarnings, 2) }) }}
{{ formatCurrency(totalEarnings, 2) }} HF
</span>
</div>

Expand Down

0 comments on commit b8aaf60

Please sign in to comment.