Showing
1 changed file
with
2 additions
and
4 deletions
... | ... | @@ -74,12 +74,10 @@ export class EdgeDownlinkTableConfig extends EntityTableConfig<EdgeEvent, TimePa |
74 | 74 | this.entitiesDeleteEnabled = false; |
75 | 75 | |
76 | 76 | this.headerComponent = EdgeDownlinkTableHeaderComponent; |
77 | - this.entityTranslations = { | |
78 | - noEntities: 'edge.no-downlinks-prompt' | |
79 | - }; | |
77 | + this.entityTranslations = { noEntities: 'edge.no-downlinks-prompt' }; | |
80 | 78 | this.entityResources = {} as EntityTypeResource<EdgeEvent>; |
81 | 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 | 82 | this.updateColumns(); |
85 | 83 | } | ... | ... |