Browse Source

Merge pull request #13445 from ArtemDzhereleiko/AD/bug-fix/cell-content-func/calc-twice

Fixed calculated twice cell content function for entities table
pull/13556/head
Igor Kulikov 1 year ago
committed by GitHub
parent
commit
05f2c05fb2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.ts
  2. 1
      ui-ngx/src/app/modules/home/components/widget/lib/entity/entities-table-widget.component.ts

1
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() {

1
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() {

Loading…
Cancel
Save