diff --git a/eeg_frontend/src/app/pages/consumption-dashboard/consumption-dashboard.ts b/eeg_frontend/src/app/pages/consumption-dashboard/consumption-dashboard.ts index 62a47ee..355d43f 100644 --- a/eeg_frontend/src/app/pages/consumption-dashboard/consumption-dashboard.ts +++ b/eeg_frontend/src/app/pages/consumption-dashboard/consumption-dashboard.ts @@ -63,8 +63,8 @@ export class ConsumptionDashboardComponent implements OnInit { this.isLoading.set(true); this.error.set(null); - const from = this.dateFrom() + 'T00:00:00'; - const to = this.dateTo() + 'T23:59:59'; + const from = this.dateFrom() + 'T00:00:00Z'; + const to = this.dateTo() + 'T23:59:59Z'; this.consumptionService.getDashboard(mpId, from, to).subscribe({ next: (data) => {