Skip to content

Commit

Permalink
Reorder instance method to come after member declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
J4bbi committed Aug 22, 2023
1 parent d9b6e9d commit e59913a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ export class CommunityListComponent implements OnInit, OnDestroy {
treeControl = new FlatTreeControl<FlatNode>(
(node: FlatNode) => node.level, (node: FlatNode) => true
);

dataSource: CommunityListDatasource;
trackBy = (index, node: FlatNode) => node.id;

paginationConfig: FindListOptions;
trackBy = (index, node: FlatNode) => node.id;

constructor(
protected communityListService: CommunityListService,
Expand Down

0 comments on commit e59913a

Please sign in to comment.