]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/shared/video-edit.module.ts
Fix updating video tags to empty field
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
1 import { NgModule } from '@angular/core'
2 import { TabsModule } from 'ngx-bootstrap/tabs'
3 import { TagInputModule } from 'ngx-chips'
4 import { SharedModule } from '../../../shared/'
5 import { VideoEditComponent } from './video-edit.component'
6 import { VideoImageComponent } from './video-image.component'
7
8 @NgModule({
9 imports: [
10 TagInputModule,
11
12 SharedModule
13 ],
14
15 declarations: [
16 VideoEditComponent,
17 VideoImageComponent
18 ],
19
20 exports: [
21 TagInputModule,
22 TabsModule,
23
24 VideoEditComponent
25 ],
26
27 providers: []
28 })
29 export class VideoEditModule { }