From 928d5ea9cee397b56e4c6cd3a0f2856ec62c96ee Mon Sep 17 00:00:00 2001 From: Andre Turner Date: Mon, 11 Dec 2023 13:14:36 -0600 Subject: [PATCH] Changed period name Final to Additional Updates --- src/components/PeriodicReports/ReportLabel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PeriodicReports/ReportLabel.tsx b/src/components/PeriodicReports/ReportLabel.tsx index ee2955a8b8..655b65dcb3 100644 --- a/src/components/PeriodicReports/ReportLabel.tsx +++ b/src/components/PeriodicReports/ReportLabel.tsx @@ -30,7 +30,7 @@ export const getReportLabel = (report?: Report) => { if (!start || !end) return null; return +start === +end - ? 'Final' + ? 'Additional Updates' : start.hasSame(end, 'month') ? start.toFormat('LLLL yyyy') : `Q${start.fiscalQuarter} FY${start.fiscalYear}`;