ESLint: fix object-curly-spacing

This commit is contained in:
Yury Bondarenko
2023-06-27 17:29:40 +02:00
parent 436a4d7645
commit 0633460107
280 changed files with 765 additions and 765 deletions

View File

@@ -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 };
}),
);
}