Skip to content

Commit

Permalink
show decimal places on statistics page
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarnsley committed Nov 11, 2024
1 parent 610cd0d commit 279ba3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/components/stats/insights/annual.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<div class="flex flex-col space-y-2">
<span>@lang('pages.statistics.insights.annual.header.fees')</span>
<span class="text-theme-secondary-900 dark:text-theme-dark-50">
{{ ExplorerNumberFormatter::currencyWithDecimals($year['fees'], Network::currency(), 2) }}
{{ ExplorerNumberFormatter::currencyWithDecimals($year['fees'], Network::currency(), 8) }}
</span>
</div>

Expand Down Expand Up @@ -84,7 +84,7 @@
<div class="flex justify-between space-x-3">
<span>@lang('pages.statistics.insights.annual.header.fees'):</span>
<span class="text-theme-secondary-900 dark:text-theme-dark-50">
{{ ExplorerNumberFormatter::currencyWithDecimals($year['fees'], Network::currency(), 2) }}
{{ ExplorerNumberFormatter::currencyWithDecimals($year['fees'], Network::currency(), 8) }}
</span>
</div>
</div>
Expand Down Expand Up @@ -127,7 +127,7 @@
<div class="flex justify-between px-8 space-x-3">
<span>@lang('pages.statistics.insights.annual.header.fees'):</span>
<span class="text-theme-secondary-900 dark:text-theme-dark-50">
{{ ExplorerNumberFormatter::currencyWithDecimals($year['fees'], Network::currency(), 2) }}
{{ ExplorerNumberFormatter::currencyWithDecimals($year['fees'], Network::currency(), 8) }}
</span>
</div>
</td>
Expand Down

0 comments on commit 279ba3a

Please sign in to comment.