From ed31c059851a30bd5ba9999f8ecb3822d576b9f4 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 2 Aug 2018 17:48:50 +0200 Subject: Add ability to list video imports --- .../app/+my-account/my-account-videos/my-account-videos.component.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client/src/app/+my-account/my-account-videos') diff --git a/client/src/app/+my-account/my-account-videos/my-account-videos.component.ts b/client/src/app/+my-account/my-account-videos/my-account-videos.component.ts index 54830c75e..01e1ef1da 100644 --- a/client/src/app/+my-account/my-account-videos/my-account-videos.component.ts +++ b/client/src/app/+my-account/my-account-videos/my-account-videos.component.ts @@ -145,6 +145,8 @@ export class MyAccountVideosComponent extends AbstractVideoList implements OnIni suffix = this.i18n('Waiting transcoding') } else if (video.state.id === VideoState.TO_TRANSCODE) { suffix = this.i18n('To transcode') + } else if (video.state.id === VideoState.TO_IMPORT) { + suffix = this.i18n('To import') } else { return '' } -- cgit v1.2.3