diff options
Diffstat (limited to 'client/src')
3 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html index 66ce3a77b..a31cb0c3d 100644 --- a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html +++ b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html | |||
@@ -38,7 +38,7 @@ | |||
38 | <div class="video-buttons" *ngIf="isInSelectionMode() === false"> | 38 | <div class="video-buttons" *ngIf="isInSelectionMode() === false"> |
39 | <my-delete-button (click)="deleteVideo(video)"></my-delete-button> | 39 | <my-delete-button (click)="deleteVideo(video)"></my-delete-button> |
40 | 40 | ||
41 | <my-edit-button [routerLink]="[ '/videos', 'edit', video.uuid ]"></my-edit-button> | 41 | <my-edit-button [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button> |
42 | </div> | 42 | </div> |
43 | </div> | 43 | </div> |
44 | </div> | 44 | </div> |
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html index 990b9400d..212bfdd8c 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.html +++ b/client/src/app/videos/+video-watch/video-watch.component.html | |||
@@ -83,7 +83,7 @@ | |||
83 | </li> | 83 | </li> |
84 | 84 | ||
85 | <li *ngIf="isVideoUpdatable()" role="menuitem"> | 85 | <li *ngIf="isVideoUpdatable()" role="menuitem"> |
86 | <a class="dropdown-item" title="Update this video" href="#" [routerLink]="[ '/videos/edit', video.uuid ]"> | 86 | <a class="dropdown-item" title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]"> |
87 | <span class="icon icon-edit"></span> Update | 87 | <span class="icon icon-edit"></span> Update |
88 | </a> | 88 | </a> |
89 | </li> | 89 | </li> |
diff --git a/client/src/app/videos/videos-routing.module.ts b/client/src/app/videos/videos-routing.module.ts index 561137b70..572f33d5e 100644 --- a/client/src/app/videos/videos-routing.module.ts +++ b/client/src/app/videos/videos-routing.module.ts | |||
@@ -64,7 +64,7 @@ const videosRoutes: Routes = [ | |||
64 | } | 64 | } |
65 | }, | 65 | }, |
66 | { | 66 | { |
67 | path: 'edit/:uuid', | 67 | path: 'update/:uuid', |
68 | loadChildren: 'app/videos/+video-edit/video-update.module#VideoUpdateModule', | 68 | loadChildren: 'app/videos/+video-edit/video-update.module#VideoUpdateModule', |
69 | data: { | 69 | data: { |
70 | meta: { | 70 | meta: { |