Fix error in form when scheduling video publication
This commit is contained in:
parent
f238aec54f
commit
4adf26735f
2 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ export abstract class FormReactive {
|
||||||
|
|
||||||
// Don't care if dirty on force check
|
// Don't care if dirty on force check
|
||||||
const isDirty = control.dirty || forceCheck === true
|
const isDirty = control.dirty || forceCheck === true
|
||||||
if (control && isDirty && !control.valid) {
|
if (control && isDirty && control.enabled && !control.valid) {
|
||||||
const messages = validationMessages[ field ]
|
const messages = validationMessages[ field ]
|
||||||
for (const key of Object.keys(control.errors)) {
|
for (const key of Object.keys(control.errors)) {
|
||||||
formErrors[ field ] += messages[ key ] + ' '
|
formErrors[ field ] += messages[ key ] + ' '
|
||||||
|
|
|
@ -189,7 +189,7 @@ export class VideoEditComponent implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
private trackPrivacyChange () {
|
private trackPrivacyChange () {
|
||||||
// We will update the "support" field depending on the channel
|
// We will update the schedule input and the wait transcoding checkbox validators
|
||||||
this.form.controls[ 'privacy' ]
|
this.form.controls[ 'privacy' ]
|
||||||
.valueChanges
|
.valueChanges
|
||||||
.pipe(map(res => parseInt(res.toString(), 10)))
|
.pipe(map(res => parseInt(res.toString(), 10)))
|
||||||
|
|
Loading…
Reference in a new issue