Reorder instance method to come after member declaration

(cherry picked from commit e59913acab)
This commit is contained in:
Hrafn Malmquist
2023-08-22 04:59:23 +01:00
committed by github-actions[bot]
parent e89a277702
commit 8a5d6897c4

View File

@@ -28,11 +28,9 @@ export class CommunityListComponent implements OnInit, OnDestroy {
treeControl = new FlatTreeControl<FlatNode>( treeControl = new FlatTreeControl<FlatNode>(
(node: FlatNode) => node.level, (node: FlatNode) => true (node: FlatNode) => node.level, (node: FlatNode) => true
); );
dataSource: CommunityListDatasource; dataSource: CommunityListDatasource;
trackBy = (index, node: FlatNode) => node.id;
paginationConfig: FindListOptions; paginationConfig: FindListOptions;
trackBy = (index, node: FlatNode) => node.id;
constructor( constructor(
protected communityListService: CommunityListService, protected communityListService: CommunityListService,