Skip to content
This repository has been archived by the owner on Dec 23, 2017. It is now read-only.

Commit

Permalink
Show financial charts in ascending chronological order.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarp committed Apr 29, 2015
1 parent 5b2ae2a commit c9117a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/partials/committee-charts.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h4>Receipts and Disbursements</h4>
<li><span class="swatch data--disbursements"></span> Disbursements</li>
</ul>
</div>
{{ charts.chart_series_grouped(committee.totals, ('receipts', 'disbursements'),
{{ charts.chart_series_grouped(committee.totals|reverse, ('receipts', 'disbursements'),
label_key=('coverage_start_date', 'coverage_end_date'), tooltip=group_bar_tooltip) }}
</figure>
</div>
Expand All @@ -28,7 +28,7 @@ <h4>Cash and Debt</h4>
<li><span class="swatch data--debt"></span> Debt</li>
</ul>
</div>
{{ charts.chart_series_grouped(committee.reports, ('cash', 'debt'),
{{ charts.chart_series_grouped(committee.reports|reverse, ('cash', 'debt'),
label_key=('coverage_end_date'), tooltip=group_bar_tooltip) }}
</figure>
</div>

0 comments on commit c9117a8

Please sign in to comment.