1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Support additional video extensions

This commit is contained in:
Chocobozzz 2018-12-11 14:52:50 +01:00
parent 8923187455
commit 14e2014acc
39 changed files with 268 additions and 90 deletions

View file

@ -19,8 +19,7 @@ export class PeertubeCheckboxComponent implements ControlValueAccessor {
@Input() labelText: string
@Input() labelHtml: string
@Input() helpHtml: string
isDisabled = false
@Input() disabled = false
propagateChange = (_: any) => { /* empty */ }
@ -41,6 +40,6 @@ export class PeertubeCheckboxComponent implements ControlValueAccessor {
}
setDisabledState (isDisabled: boolean) {
this.isDisabled = isDisabled
this.disabled = isDisabled
}
}