X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideos%2F%2Bvideo-edit%2Fshared%2Fvideo-edit.module.ts;h=d463bf63334fdf23660b8893a75d04e14dfae4bd;hb=HEAD;hp=d1bbbafe9d42f09eaa20b1aadd9976320fbc08c9;hpb=187b2e23465688acbefad52721593a51caa21c40;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.module.ts b/client/src/app/+videos/+video-edit/shared/video-edit.module.ts index d1bbbafe9..d463bf633 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.module.ts +++ b/client/src/app/+videos/+video-edit/shared/video-edit.module.ts @@ -1,30 +1,31 @@ -import { TagInputModule } from 'ngx-chips' import { CalendarModule } from 'primeng/calendar' import { NgModule } from '@angular/core' import { SharedFormModule } from '@app/shared/shared-forms' import { SharedGlobalIconModule } from '@app/shared/shared-icons' import { SharedMainModule } from '@app/shared/shared-main' +import { SharedVideoLiveModule } from '@app/shared/shared-video-live' import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service' import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component' +import { VideoCaptionEditModalContentComponent } from './video-caption-edit-modal-content/video-caption-edit-modal-content.component' import { VideoEditComponent } from './video-edit.component' @NgModule({ imports: [ - TagInputModule, CalendarModule, SharedMainModule, SharedFormModule, - SharedGlobalIconModule + SharedGlobalIconModule, + SharedVideoLiveModule ], declarations: [ VideoEditComponent, - VideoCaptionAddModalComponent + VideoCaptionAddModalComponent, + VideoCaptionEditModalContentComponent ], exports: [ - TagInputModule, CalendarModule, SharedMainModule,