Skip to content

Commit 78986cd

Browse files
committed
feat: use 3 m as default resolution for the dashboard
1 parent bdefd84 commit 78986cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/dashboard/dashboard.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default class DashboardComponent {
5252
protected readonly faChevronLeft = faChevronLeft;
5353
protected readonly faChevronRight = faChevronRight;
5454
protected readonly faCalendar = faCalendar;
55-
protected readonly chartResolution$ = new BehaviorSubject<Resolution>('1 m');
55+
protected readonly chartResolution$ = new BehaviorSubject<Resolution>('3 m');
5656
private readonly weekDate$ = new BehaviorSubject<DateTime>(DateTime.now());
5757
protected readonly weekNumber$ = this.weekDate$.pipe(map(weekDate => weekDate.get('weekNumber')));
5858
protected readonly weekFromTo$ = this.weekNumber$.pipe(

0 commit comments

Comments
 (0)