changed default months to 5 in cash flow report (#1723)

This commit is contained in:
Shaan Khosla
2023-09-22 15:03:10 -04:00
committed by GitHub
parent ba5174ddfa
commit 2f97c3a1e2
2 changed files with 7 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ function CashFlow() {
const [allMonths, setAllMonths] = useState(null);
const [start, setStart] = useState(
monthUtils.subMonths(monthUtils.currentMonth(), 30),
monthUtils.subMonths(monthUtils.currentMonth(), 5),
);
const [end, setEnd] = useState(monthUtils.currentDay());

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [shaankhosla]
---
Changed the default number of months shown in the Cash Flow report from 30 to 5.