From: Chocobozzz Date: Wed, 24 Jun 2020 09:43:16 +0000 (+0200) Subject: Fix upload page X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=187b2e23465688acbefad52721593a51caa21c40;p=oweals%2Fpeertube.git Fix upload page --- 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..d1bbbafe9 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 @@ -4,6 +4,7 @@ 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 { I18nPrimengCalendarService } from './i18n-primeng-calendar.service' import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component' import { VideoEditComponent } from './video-edit.component' @@ -33,6 +34,8 @@ import { VideoEditComponent } from './video-edit.component' VideoEditComponent ], - providers: [] + providers: [ + I18nPrimengCalendarService + ] }) export class VideoEditModule { }