Display only statistics until today
All checks were successful
Java CI with Maven / build-and-push-frontend (push) Successful in 7s
Java CI with Maven / build-and-push-backend (push) Successful in 11s

This commit is contained in:
Sebastian Böckelmann 2024-03-17 13:28:49 +01:00
parent 1133d2123c
commit e53a1797fe

View File

@ -39,7 +39,7 @@ export class SimpleActivityDiagramComponent {
createDateRange(): Date[] {
const dates: Date[] = [];
for (let i: number = 1; i <= 31; i++) {
for (let i: number = 1; i <= 30; i++) {
dates.push(moment().subtract(30-i, 'd').toDate());
}