Skip to content

Commit

Permalink
add styling back to cash flow graph (actualbudget#1819)
Browse files Browse the repository at this point in the history
* add styling back

* release notes

* vrt
  • Loading branch information
shaankhosla authored Oct 21, 2023
1 parent 6c489a7 commit de6beb2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ function CashFlowGraph({ graphData, isConcise }: CashFlowGraphProps) {
}
>
<VictoryGroup>
<VictoryBar data={graphData.expenses} />
<VictoryBar
data={graphData.expenses}
style={{ data: { fill: chartTheme.colors.red } }}
/>
<VictoryBar data={graphData.income} />
</VictoryGroup>
<VictoryLine
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/1819.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [shaankhosla]
---

Fix styling on cash-flow graph.

0 comments on commit de6beb2

Please sign in to comment.