Skip to content

Commit

Permalink
fix ordering of totals in summary line
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Hand committed Jul 8, 2021
1 parent 3a640b8 commit 62bfdfc
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/views/BudgetExplorer/BudgetExplorerViz.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@

<!-- The total change -->
<div
class="total-change text-center mt-5 pb-3 d-flex justify-content-center flex-column"
class="
total-change
text-center
mt-5
pb-3
d-flex
justify-content-center
flex-column
"
>
<div>Total Spending Change:</div>
<div class="total-change-number">
Expand Down Expand Up @@ -454,8 +462,8 @@ export default {
row =
row +
`<th class="vgt-row-header vgt-right-align">${formatFn(comparison)}</th>
<th class="vgt-row-header vgt-right-align">${formatFn(current)}</th>
`<th class="vgt-row-header vgt-right-align">${formatFn(current)}</th>
<th class="vgt-row-header vgt-right-align">${formatFn(comparison)}</th>
<th class="vgt-row-header vgt-right-align">${netChangeFormatFn(
diff
)}</th>
Expand Down

0 comments on commit 62bfdfc

Please sign in to comment.