Burak Soykan
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
4 deletions
-
ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.ts
-
ui-ngx/src/app/modules/home/components/widget/lib/entity/entities-table-widget.component.ts
|
|
|
@ -727,8 +727,7 @@ export class AlarmsTableWidgetComponent extends PageComponent implements OnInit, |
|
|
|
? (key.type === EntityKeyType.ENTITY_FIELD || key.type === EntityKeyType.ALARM_FIELD ? 'entityField' |
|
|
|
: key.type === EntityKeyType.TIME_SERIES ? 'timeseries' : 'attribute') |
|
|
|
: 'entityField'; |
|
|
|
const keyFilters: KeyFilter[] = null; // TODO:
|
|
|
|
this.alarmsDatasource.loadAlarms(this.pageLink, sortOrderLabel, sortColumnType, keyFilters); |
|
|
|
this.alarmsDatasource.loadAlarms(this.pageLink, sortOrderLabel, sortColumnType, null); |
|
|
|
this.ctx.detectChanges(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -621,8 +621,7 @@ export class EntitiesTableWidgetComponent extends PageComponent implements OnIni |
|
|
|
? (key.type === EntityKeyType.ENTITY_FIELD ? 'entityField' |
|
|
|
: key.type === EntityKeyType.TIME_SERIES ? 'timeseries' : 'attribute') |
|
|
|
: 'entityField'; |
|
|
|
const keyFilters: KeyFilter[] = null; // TODO:
|
|
|
|
this.entityDatasource.loadEntities(this.pageLink, sortOrderLabel, sortColumnType, keyFilters); |
|
|
|
this.entityDatasource.loadEntities(this.pageLink, sortOrderLabel, sortColumnType, null); |
|
|
|
this.ctx.detectChanges(); |
|
|
|
} |
|
|
|
|
|
|
|
|