From e1c696f7cb8fdd5cf5afb2bf5fc3416e06e3c3b4 Mon Sep 17 00:00:00 2001 From: Igor Kulikov Date: Fri, 8 Jul 2022 18:59:22 +0300 Subject: [PATCH] Fix style errors --- .../dashboard-page/layout/dashboard-layout.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/dashboard-page/layout/dashboard-layout.component.ts b/ui-ngx/src/app/modules/home/components/dashboard-page/layout/dashboard-layout.component.ts index c331578e2b..fcee0b2f0a 100644 --- a/ui-ngx/src/app/modules/home/components/dashboard-page/layout/dashboard-layout.component.ts +++ b/ui-ngx/src/app/modules/home/components/dashboard-page/layout/dashboard-layout.component.ts @@ -94,7 +94,8 @@ export class DashboardLayoutComponent extends PageComponent implements ILayoutCo } ngOnInit(): void { - const dashboardTimewindowChanged = this.parentDashboard ? this.parentDashboard.dashboardTimewindowChanged : this.dashboard.dashboardTimewindowChanged; + const dashboardTimewindowChanged = this.parentDashboard ? + this.parentDashboard.dashboardTimewindowChanged : this.dashboard.dashboardTimewindowChanged; this.rxSubscriptions.push(dashboardTimewindowChanged.subscribe( (dashboardTimewindow) => { this.dashboardCtx.dashboardTimewindow = dashboardTimewindow;