mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Reorder instance method to come after member declaration
(cherry picked from commit e59913acab
)
This commit is contained in:

committed by
github-actions[bot]
![github-actions[bot]](/assets/img/avatar_default.png)
parent
e89a277702
commit
8a5d6897c4
@@ -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,
|
||||||
|
Reference in New Issue
Block a user