Fix support field validation in video edit

This commit is contained in:
Chocobozzz 2018-02-21 18:23:20 +01:00
parent 86ec3e53ac
commit 9f4183c9b5
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ export class VideoEditComponent implements OnInit {
this.form.addControl('tags', new FormControl(''))
this.form.addControl('thumbnailfile', new FormControl(''))
this.form.addControl('previewfile', new FormControl(''))
this.form.addControl('support', new FormControl(''))
this.form.addControl('support', new FormControl('', VIDEO_SUPPORT.VALIDATORS))
}
ngOnInit () {