From 349c7d4def6571625e4a79173bb4c7b91c75dd25 Mon Sep 17 00:00:00 2001 From: Aram Akhavan Date: Sun, 8 Feb 2026 20:35:28 -0800 Subject: [PATCH] Fix temperature plot to use local time (#903) Closes #893 #889 --- .../src/app/modules/dashboard/dashboard.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webapp/frontend/src/app/modules/dashboard/dashboard.component.ts b/webapp/frontend/src/app/modules/dashboard/dashboard.component.ts index bdd166c..b9252ca 100644 --- a/webapp/frontend/src/app/modules/dashboard/dashboard.component.ts +++ b/webapp/frontend/src/app/modules/dashboard/dashboard.component.ts @@ -229,7 +229,10 @@ export class DashboardComponent implements OnInit, AfterViewInit, OnDestroy } }, xaxis: { - type: 'datetime' + type: 'datetime', + labels: { + datetimeUTC: false + } } }; }