Commit cbe5a264974b7d482edaf31a98a9ccc17a289fe8

Authored by Artem Babak
1 parent dbadab6e

Minor code cleanup

@@ -74,12 +74,10 @@ export class EdgeDownlinkTableConfig extends EntityTableConfig<EdgeEvent, TimePa @@ -74,12 +74,10 @@ export class EdgeDownlinkTableConfig extends EntityTableConfig<EdgeEvent, TimePa
74 this.entitiesDeleteEnabled = false; 74 this.entitiesDeleteEnabled = false;
75 75
76 this.headerComponent = EdgeDownlinkTableHeaderComponent; 76 this.headerComponent = EdgeDownlinkTableHeaderComponent;
77 - this.entityTranslations = {  
78 - noEntities: 'edge.no-downlinks-prompt'  
79 - }; 77 + this.entityTranslations = { noEntities: 'edge.no-downlinks-prompt' };
80 this.entityResources = {} as EntityTypeResource<EdgeEvent>; 78 this.entityResources = {} as EntityTypeResource<EdgeEvent>;
81 this.entitiesFetchFunction = pageLink => this.fetchEvents(pageLink); 79 this.entitiesFetchFunction = pageLink => this.fetchEvents(pageLink);
82 - this.defaultSortOrder = {property: 'createdTime', direction: Direction.DESC}; 80 + this.defaultSortOrder = { property: 'createdTime', direction: Direction.DESC };
83 81
84 this.updateColumns(); 82 this.updateColumns();
85 } 83 }