Reverse sort in chart

This commit is contained in:
James Cole 2020-07-26 14:17:49 +02:00
parent 83467ef2f2
commit 453709a117
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -98,7 +98,7 @@ class FrontpageChartGenerator
// sort temp array by amount.
$amounts = array_column($tempData, 'sum_float');
array_multisort($amounts, SORT_DESC, $tempData);
array_multisort($amounts, SORT_ASC, $tempData);
$currencyData = $this->createCurrencyGroups($tempData);