Compare commits

...

2 Commits

Author SHA1 Message Date
f190292171 Merge pull request 'fix total donation sum in dashboard' (#140) from bugfix/139-total-donation-sum-is-wrong into dev
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #140

close #139
2021-07-05 15:00:44 +00:00
b246f2b349
divide by 100 + toFixes(2)
ref #139
2021-07-05 13:30:17 +02:00

View File

@ -70,7 +70,7 @@
<div class="text-xs uppercase font-light text-grey-500">
{$_('total-donations')}
</div>
<div class="text-xl font-bold">{stats.total_donation} €</div>
<div class="text-xl font-bold">{(stats.total_donation/100).toFixed(2)} €</div>
</div><svg
xmlns="http://www.w3.org/2000/svg"
height="24"