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=7a3854065fefbd5fb97e19425c8499a3bb5c3991;hb=5ec3cbdf22fc88ebe57f370fc0bc0e3df7453458;hp=96061a300be8a9e996a925182bab970dbcbdedee;hpb=1942f11d5ee6926ad93dc1b79fae18325ba5de18;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 96061a300..7a3854065 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,20 +1,21 @@ -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 { VideoEditComponent } from './video-edit.component' @NgModule({ imports: [ - TagInputModule, CalendarModule, SharedMainModule, SharedFormModule, - SharedGlobalIconModule + SharedGlobalIconModule, + SharedVideoLiveModule ], declarations: [ @@ -23,7 +24,6 @@ import { VideoEditComponent } from './video-edit.component' ], exports: [ - TagInputModule, CalendarModule, SharedMainModule, @@ -33,6 +33,8 @@ import { VideoEditComponent } from './video-edit.component' VideoEditComponent ], - providers: [] + providers: [ + I18nPrimengCalendarService + ] }) export class VideoEditModule { }