Commits
Sergio Fernández Celorio authored 1e523382d06
37 37 | isLastPage: boolean; |
38 38 | |
39 39 | pageSize: number; |
40 40 | |
41 41 | constructor( |
42 42 | protected bitstreamDataService: BitstreamDataService, |
43 43 | protected notificationsService: NotificationsService, |
44 44 | protected translateService: TranslateService, |
45 45 | @Inject(APP_CONFIG) protected appConfig: AppConfig |
46 46 | ) { |
47 - | this.pageSize = this.appConfig.item.simpleView.bitstreamPageSize |
47 + | this.pageSize = this.appConfig.item.simpleView.bitstreamPageSize; |
48 48 | } |
49 49 | |
50 50 | ngOnInit(): void { |
51 51 | this.getNextPage(); |
52 52 | } |
53 53 | |
54 54 | /** |
55 55 | * This method will retrieve the next page of Bitstreams from the external BitstreamDataService call. |
56 56 | * It'll retrieve the currentPage from the class variables and it'll add the next page of bitstreams with the |
57 57 | * already existing one. |