From a66b76697fc7e53cccf6f6da994b46eabb469c40 Mon Sep 17 00:00:00 2001 From: Maksym Dudnik Date: Thu, 25 May 2023 13:06:44 +0300 Subject: [PATCH] fixes --- .../shared/components/device/gateway-statistics.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/shared/components/device/gateway-statistics.component.ts b/ui-ngx/src/app/shared/components/device/gateway-statistics.component.ts index fa9a6e4a47..7d19db4ecd 100644 --- a/ui-ngx/src/app/shared/components/device/gateway-statistics.component.ts +++ b/ui-ngx/src/app/shared/components/device/gateway-statistics.component.ts @@ -93,7 +93,7 @@ export class GatewayStatisticsComponent extends PageComponent implements AfterVi this.ctx.defaultSubscription.onTimewindowChangeFunction = timeWindow => { this.ctx.defaultSubscription.options.timeWindowConfig = timeWindow; this.ctx.defaultSubscription.updateTimewindowConfig(timeWindow); - this.ctx.defaultSubscription.update(); + // this.ctx.defaultSubscription.update(); this.updateChart(); return timeWindow; }