aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-add.module.ts
diff options
context:
space:
mode:
authorkontrollanten <6680299+kontrollanten@users.noreply.github.com>2022-04-08 11:14:12 +0200
committerGitHub <noreply@github.com>2022-04-08 11:14:12 +0200
commit72dd3a7c26cf0ef7b0e1780afd7bdbf7fea1d2b1 (patch)
treeec41a8adc10bc9991f494c4ce0e7eb5cf35cb7a6 /client/src/app/+videos/+video-edit/video-add.module.ts
parent68a4b1e587150e58bc8471fd32c6d7316095afa4 (diff)
downloadPeerTube-72dd3a7c26cf0ef7b0e1780afd7bdbf7fea1d2b1.tar.gz
PeerTube-72dd3a7c26cf0ef7b0e1780afd7bdbf7fea1d2b1.tar.zst
PeerTube-72dd3a7c26cf0ef7b0e1780afd7bdbf7fea1d2b1.zip
Fix titles on upload page (#4904)
* client/video-add: fix route titles * client/video-add: show progress in page title * Styling Co-authored-by: Chocobozzz <me@florianbigard.com>
Diffstat (limited to 'client/src/app/+videos/+video-edit/video-add.module.ts')
-rw-r--r--client/src/app/+videos/+video-edit/video-add.module.ts9
1 files changed, 3 insertions, 6 deletions
diff --git a/client/src/app/+videos/+video-edit/video-add.module.ts b/client/src/app/+videos/+video-edit/video-add.module.ts
index e836cf81e..f5bfc925a 100644
--- a/client/src/app/+videos/+video-edit/video-add.module.ts
+++ b/client/src/app/+videos/+video-edit/video-add.module.ts
@@ -1,11 +1,10 @@
1import { NgModule } from '@angular/core'
2import { CanDeactivateGuard } from '@app/core'
3import { UploadxModule } from 'ngx-uploadx' 1import { UploadxModule } from 'ngx-uploadx'
2import { NgModule } from '@angular/core'
4import { VideoEditModule } from './shared/video-edit.module' 3import { VideoEditModule } from './shared/video-edit.module'
5import { DragDropDirective } from './video-add-components/drag-drop.directive' 4import { DragDropDirective } from './video-add-components/drag-drop.directive'
5import { VideoGoLiveComponent } from './video-add-components/video-go-live.component'
6import { VideoImportTorrentComponent } from './video-add-components/video-import-torrent.component' 6import { VideoImportTorrentComponent } from './video-add-components/video-import-torrent.component'
7import { VideoImportUrlComponent } from './video-add-components/video-import-url.component' 7import { VideoImportUrlComponent } from './video-add-components/video-import-url.component'
8import { VideoGoLiveComponent } from './video-add-components/video-go-live.component'
9import { VideoUploadComponent } from './video-add-components/video-upload.component' 8import { VideoUploadComponent } from './video-add-components/video-upload.component'
10import { VideoAddRoutingModule } from './video-add-routing.module' 9import { VideoAddRoutingModule } from './video-add-routing.module'
11import { VideoAddComponent } from './video-add.component' 10import { VideoAddComponent } from './video-add.component'
@@ -30,8 +29,6 @@ import { VideoAddComponent } from './video-add.component'
30 29
31 exports: [ ], 30 exports: [ ],
32 31
33 providers: [ 32 providers: []
34 CanDeactivateGuard
35 ]
36}) 33})
37export class VideoAddModule { } 34export class VideoAddModule { }