mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
ESLint: fix object-curly-spacing
This commit is contained in:
@@ -283,7 +283,7 @@ export class PaginationComponent implements OnDestroy, OnInit {
|
||||
* The page being navigated to.
|
||||
*/
|
||||
public doPageChange(page: number) {
|
||||
this.updateParams({page: page});
|
||||
this.updateParams({ page: page });
|
||||
this.emitPaginationChange();
|
||||
}
|
||||
|
||||
@@ -352,7 +352,7 @@ export class PaginationComponent implements OnDestroy, OnInit {
|
||||
} else {
|
||||
lastItem = collectionSize;
|
||||
}
|
||||
return {range: firstItem + ' - ' + lastItem, total: collectionSize};
|
||||
return { range: firstItem + ' - ' + lastItem, total: collectionSize };
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user