mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
ESLint: fix indentation
This commit is contained in:
@@ -244,12 +244,12 @@ export class PaginationComponent implements OnDestroy, OnInit {
|
||||
} else {
|
||||
sortOptions = new SortOptions(this.defaultSortField, this.defaultsortDirection);
|
||||
}
|
||||
this.sortDirection$ = this.paginationService.getCurrentSort(this.id, sortOptions).pipe(
|
||||
map((currentSort) => currentSort.direction)
|
||||
);
|
||||
this.sortField$ = this.paginationService.getCurrentSort(this.id, sortOptions).pipe(
|
||||
map((currentSort) => currentSort.field)
|
||||
);
|
||||
this.sortDirection$ = this.paginationService.getCurrentSort(this.id, sortOptions).pipe(
|
||||
map((currentSort) => currentSort.direction)
|
||||
);
|
||||
this.sortField$ = this.paginationService.getCurrentSort(this.id, sortOptions).pipe(
|
||||
map((currentSort) => currentSort.field)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -389,7 +389,7 @@ export class PaginationComponent implements OnDestroy, OnInit {
|
||||
/**
|
||||
* Go to the previous page
|
||||
*/
|
||||
goPrev() {
|
||||
goPrev() {
|
||||
this.prev.emit(true);
|
||||
this.updatePagination(-1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user