diff options
author | Chocobozzz <me@florianbigard.com> | 2023-05-24 15:27:15 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-05-24 15:27:15 +0200 |
commit | d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d (patch) | |
tree | fa29fcfd704cbc56c7bc3e3e1c15d84ea0f4dc61 /client/src/app/+video-studio | |
parent | 25ea1d85e155382367d11036617848fe69a1e6a4 (diff) | |
download | PeerTube-d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d.tar.gz PeerTube-d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d.tar.zst PeerTube-d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d.zip |
Fix lint
Diffstat (limited to 'client/src/app/+video-studio')
-rw-r--r-- | client/src/app/+video-studio/edit/video-studio-edit.component.html | 4 | ||||
-rw-r--r-- | client/src/app/+video-studio/edit/video-studio-edit.component.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+video-studio/edit/video-studio-edit.component.html b/client/src/app/+video-studio/edit/video-studio-edit.component.html index fe74062d2..c29b12157 100644 --- a/client/src/app/+video-studio/edit/video-studio-edit.component.html +++ b/client/src/app/+video-studio/edit/video-studio-edit.component.html | |||
@@ -72,12 +72,12 @@ | |||
72 | 72 | ||
73 | <div class="information"> | 73 | <div class="information"> |
74 | <div> | 74 | <div> |
75 | <label i18n>Video before edition</label> | 75 | <div class="mb-1 fw-bold" i18n>Video before edition</div> |
76 | <my-embed [video]="video"></my-embed> | 76 | <my-embed [video]="video"></my-embed> |
77 | </div> | 77 | </div> |
78 | 78 | ||
79 | <div *ngIf="!noEdition()"> | 79 | <div *ngIf="!noEdition()"> |
80 | <label i18n>Edition tasks:</label> | 80 | <div class="mb-1 fw-bold" i18n>Edition tasks:</div> |
81 | 81 | ||
82 | <ol> | 82 | <ol> |
83 | <li *ngFor="let task of getTasksSummary()">{{ task }}</li> | 83 | <li *ngFor="let task of getTasksSummary()">{{ task }}</li> |
diff --git a/client/src/app/+video-studio/edit/video-studio-edit.component.ts b/client/src/app/+video-studio/edit/video-studio-edit.component.ts index 94f7b5d0b..3d618fbe1 100644 --- a/client/src/app/+video-studio/edit/video-studio-edit.component.ts +++ b/client/src/app/+video-studio/edit/video-studio-edit.component.ts | |||
@@ -43,7 +43,7 @@ export class VideoStudioEditComponent extends FormReactive implements OnInit { | |||
43 | } | 43 | } |
44 | 44 | ||
45 | this.buildForm({ | 45 | this.buildForm({ |
46 | cut: { | 46 | 'cut': { |
47 | start: null, | 47 | start: null, |
48 | end: null | 48 | end: null |
49 | }, | 49 | }, |