From 3a069203542b31765be598deacee2a90d70ceabc Mon Sep 17 00:00:00 2001 From: Aram Akhavan Date: Sat, 21 Feb 2026 20:48:44 -0800 Subject: [PATCH] Make defaut temperature history length 1 week (#939) Closes #356 --- .../frontend/src/app/modules/dashboard/dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 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 da3aaf2..50aeed2 100644 --- a/webapp/frontend/src/app/modules/dashboard/dashboard.component.ts +++ b/webapp/frontend/src/app/modules/dashboard/dashboard.component.ts @@ -32,7 +32,7 @@ export class DashboardComponent implements OnInit, AfterViewInit, OnDestroy summaryData: { [key: string]: DeviceSummaryModel }; hostGroups: { [hostId: string]: string[] } = {} temperatureOptions: ApexOptions; - tempDurationKey = 'forever' + tempDurationKey = 'week' config: AppConfig; showArchived: boolean;