Skip to content

Commit c118a9c

Browse files
author
Scott Straughan
committed
Slightly nicer looking research/videos page by return the specific number of results the view can render.
1 parent 6072bb3 commit c118a9c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/app/pages/ecosystem/research/research.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ export class ResearchComponent extends FilterableBaseComponent implements OnInit
5454
protected meta: Meta
5555
) {
5656
super(researchService);
57+
58+
this.maxResultsPerPage = 20;
59+
5760
this.titleService.setTitle('Research - Ecosystem - SYCL.tech');
5861
this.meta.addTag({ name: 'keywords', content: this.getKeywords().join(', ') });
5962
this.meta.addTag({ name: 'description', content: this.getDescription() });

src/app/pages/ecosystem/videos/videos.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ export class VideosComponent extends FilterableBaseComponent implements OnInit,
5454
protected meta: Meta
5555
) {
5656
super(videosService);
57+
58+
this.maxResultsPerPage = 20;
59+
5760
this.titleService.setTitle('Videos - Ecosystem - SYCL.tech');
5861
this.meta.addTag({ name: 'keywords', content: this.getKeywords().join(', ') });
5962
this.meta.addTag({ name: 'description', content: this.getDescription() });

0 commit comments

Comments
 (0)