Update ChartDisplay.vue (#3200)

Signed-off-by: felix <60808107+ItsFelix5@users.noreply.github.com>
This commit is contained in:
felix 2025-01-29 21:08:29 +01:00 committed by GitHub
parent 8b3ede4218
commit b5abce161f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -693,6 +693,14 @@ const defaultRanges: RangeObject[] = [
}),
timeResolution: 40320,
},
{
getLabel: () => "All Time",
getDates: (currentDate: dayjs.Dayjs) => ({
startDate: dayjs(0),
endDate: currentDate,
}),
timeResolution: 40320,
},
];
</script>