aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-07-16 18:09:31 +0200
committerChocobozzz <me@florianbigard.com>2018-07-16 18:09:31 +0200
commit308c427551c3e20cd9172be58636d8c178f5ae70 (patch)
tree10c96e81ccf8da8f7460fc76f90963e3a7f6ac9c /client/src/app/+my-account
parentef4c78da4f0da61aebfa42f6e8420bf431a68bc8 (diff)
downloadPeerTube-308c427551c3e20cd9172be58636d8c178f5ae70.tar.gz
PeerTube-308c427551c3e20cd9172be58636d8c178f5ae70.tar.zst
PeerTube-308c427551c3e20cd9172be58636d8c178f5ae70.zip
Use a resolver when updating the video
Diffstat (limited to 'client/src/app/+my-account')
-rw-r--r--client/src/app/+my-account/my-account-videos/my-account-videos.component.ts2
1 files changed, 1 insertions, 1 deletions
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 e698b75ec..54830c75e 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
@@ -38,10 +38,10 @@ export class MyAccountVideosComponent extends AbstractVideoList implements OnIni
38 protected route: ActivatedRoute, 38 protected route: ActivatedRoute,
39 protected authService: AuthService, 39 protected authService: AuthService,
40 protected notificationsService: NotificationsService, 40 protected notificationsService: NotificationsService,
41 protected confirmService: ConfirmService,
42 protected location: Location, 41 protected location: Location,
43 protected screenService: ScreenService, 42 protected screenService: ScreenService,
44 protected i18n: I18n, 43 protected i18n: I18n,
44 private confirmService: ConfirmService,
45 private videoService: VideoService, 45 private videoService: VideoService,
46 @Inject(LOCALE_ID) private localeId: string 46 @Inject(LOCALE_ID) private localeId: string
47 ) { 47 ) {