aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-miniature/videos-selection.component.ts
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2021-01-22 00:12:44 +0100
committerChocobozzz <chocobozzz@cpy.re>2021-01-28 15:55:34 +0100
commit5bcbcbe338ef5a1ed14f084311d013fbb25dabcf (patch)
treeb0f6382b30b67f1f7adddaf7d12af9adae0c9f5d /client/src/app/shared/shared-video-miniature/videos-selection.component.ts
parent7a4994873c0b3394d04e16e877fc7418bc8b146a (diff)
downloadPeerTube-5bcbcbe338ef5a1ed14f084311d013fbb25dabcf.tar.gz
PeerTube-5bcbcbe338ef5a1ed14f084311d013fbb25dabcf.tar.zst
PeerTube-5bcbcbe338ef5a1ed14f084311d013fbb25dabcf.zip
modularize abstract video list header and implement video hotness recommendation variant
Diffstat (limited to 'client/src/app/shared/shared-video-miniature/videos-selection.component.ts')
-rw-r--r--client/src/app/shared/shared-video-miniature/videos-selection.component.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-video-miniature/videos-selection.component.ts b/client/src/app/shared/shared-video-miniature/videos-selection.component.ts
index 2b060b130..ef59975d4 100644
--- a/client/src/app/shared/shared-video-miniature/videos-selection.component.ts
+++ b/client/src/app/shared/shared-video-miniature/videos-selection.component.ts
@@ -2,6 +2,7 @@ import { Observable } from 'rxjs'
2import { 2import {
3 AfterContentInit, 3 AfterContentInit,
4 Component, 4 Component,
5 ComponentFactoryResolver,
5 ContentChildren, 6 ContentChildren,
6 EventEmitter, 7 EventEmitter,
7 Input, 8 Input,
@@ -51,7 +52,8 @@ export class VideosSelectionComponent extends AbstractVideoList implements OnIni
51 protected userService: UserService, 52 protected userService: UserService,
52 protected screenService: ScreenService, 53 protected screenService: ScreenService,
53 protected storageService: LocalStorageService, 54 protected storageService: LocalStorageService,
54 protected serverService: ServerService 55 protected serverService: ServerService,
56 protected cfr: ComponentFactoryResolver
55 ) { 57 ) {
56 super() 58 super()
57 } 59 }