diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-02 08:49:54 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-02 08:49:54 +0200 |
commit | 787409e64a625b22b6e2e309430f48a09bab9518 (patch) | |
tree | e4d4b4e2be1687a967af6c2ebcb12fbd90bd527b /client | |
parent | 3124b4690484694a21404d72cffecffbbd8513a0 (diff) | |
download | PeerTube-787409e64a625b22b6e2e309430f48a09bab9518.tar.gz PeerTube-787409e64a625b22b6e2e309430f48a09bab9518.tar.zst PeerTube-787409e64a625b22b6e2e309430f48a09bab9518.zip |
Fix search module import
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/shared/shared-search/shared-search.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-search/shared-search.module.ts b/client/src/app/shared/shared-search/shared-search.module.ts index 134300d88..be4ef5e3f 100644 --- a/client/src/app/shared/shared-search/shared-search.module.ts +++ b/client/src/app/shared/shared-search/shared-search.module.ts | |||
@@ -1,10 +1,12 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { SharedMainModule } from '../shared-main' | 2 | import { SharedMainModule } from '../shared-main' |
3 | import { SharedVideoPlaylistModule } from '../shared-video-playlist' | ||
3 | import { SearchService } from './search.service' | 4 | import { SearchService } from './search.service' |
4 | 5 | ||
5 | @NgModule({ | 6 | @NgModule({ |
6 | imports: [ | 7 | imports: [ |
7 | SharedMainModule | 8 | SharedMainModule, |
9 | SharedVideoPlaylistModule | ||
8 | ], | 10 | ], |
9 | 11 | ||
10 | declarations: [ | 12 | declarations: [ |