diff options
author | Lucas Declercq <lucas.declercq@ineat-conseil.fr> | 2018-10-08 16:33:02 +0200 |
---|---|---|
committer | Lucas Declercq <lucas.declercq@ineat-conseil.fr> | 2018-10-08 16:33:02 +0200 |
commit | 8ea1597fdbb2eb8ef71e805cf175e88ae05629c0 (patch) | |
tree | 83869520ee84a40d2c3882c910e29a9d3e724a93 /client/src | |
parent | 7f2cfe3a792856f7de6f1d13688aa3d06ec1bf70 (diff) | |
download | PeerTube-8ea1597fdbb2eb8ef71e805cf175e88ae05629c0.tar.gz PeerTube-8ea1597fdbb2eb8ef71e805cf175e88ae05629c0.tar.zst PeerTube-8ea1597fdbb2eb8ef71e805cf175e88ae05629c0.zip |
Fix too big line length
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/shared/video/video-edit.model.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/client/src/app/shared/video/video-edit.model.ts b/client/src/app/shared/video/video-edit.model.ts index e385004e5..5bb0510f9 100644 --- a/client/src/app/shared/video/video-edit.model.ts +++ b/client/src/app/shared/video/video-edit.model.ts | |||
@@ -27,7 +27,15 @@ export class VideoEdit implements VideoUpdate { | |||
27 | id?: number | 27 | id?: number |
28 | scheduleUpdate?: VideoScheduleUpdate | 28 | scheduleUpdate?: VideoScheduleUpdate |
29 | 29 | ||
30 | constructor (video?: Video & { tags: string[], commentsEnabled: boolean, downloadEnabled: boolean, support: string, thumbnailUrl: string, previewUrl: string }) { | 30 | constructor ( |
31 | video?: Video & { | ||
32 | tags: string[], | ||
33 | commentsEnabled: boolean, | ||
34 | downloadEnabled: boolean, | ||
35 | support: string, | ||
36 | thumbnailUrl: string, | ||
37 | previewUrl: string | ||
38 | }) { | ||
31 | if (video) { | 39 | if (video) { |
32 | this.id = video.id | 40 | this.id = video.id |
33 | this.uuid = video.uuid | 41 | this.uuid = video.uuid |