diff --git a/apps/frontend/src/components/ui/charts/ChartDisplay.vue b/apps/frontend/src/components/ui/charts/ChartDisplay.vue index f57a92f4d..a6ca889c1 100644 --- a/apps/frontend/src/components/ui/charts/ChartDisplay.vue +++ b/apps/frontend/src/components/ui/charts/ChartDisplay.vue @@ -693,6 +693,14 @@ const defaultRanges: RangeObject[] = [ }), timeResolution: 40320, }, + { + getLabel: () => "All Time", + getDates: (currentDate: dayjs.Dayjs) => ({ + startDate: dayjs(0), + endDate: currentDate, + }), + timeResolution: 40320, + }, ];