From 3bc89fb1d7f87a10102cc6afbd1983f685028cd1 Mon Sep 17 00:00:00 2001 From: Artem Dzhereleiko Date: Tue, 27 May 2025 13:24:44 +0300 Subject: [PATCH 1/2] UI: Fixed calculated twice cell content function for entities table --- .../widget/lib/entity/entities-table-widget.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/entity/entities-table-widget.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/entity/entities-table-widget.component.ts index 93d9d09b6d..fadd5c7679 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/entity/entities-table-widget.component.ts +++ b/ui-ngx/src/app/modules/home/components/widget/lib/entity/entities-table-widget.component.ts @@ -275,7 +275,6 @@ export class EntitiesTableWidgetComponent extends PageComponent implements OnIni public onDataUpdated() { this.entityDatasource.dataUpdated(); this.clearCache(); - this.ctx.detectChanges(); } public onEditModeChanged() { From 49f5fc023fe26403827b759d91639a1579b89ca7 Mon Sep 17 00:00:00 2001 From: Artem Dzhereleiko Date: Fri, 30 May 2025 08:54:12 +0300 Subject: [PATCH 2/2] UI: Fixed twice call cell content func for alarm table widget --- .../components/widget/lib/alarm/alarms-table-widget.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.ts index b1c0f38ef2..45825a0294 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.ts +++ b/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.ts @@ -340,7 +340,6 @@ export class AlarmsTableWidgetComponent extends PageComponent implements OnInit, public onDataUpdated() { this.alarmsDatasource.updateAlarms(); this.clearCache(); - this.ctx.detectChanges(); } public onEditModeChanged() {