= this.fb.group({
language: this.fb.control(null),
confirmStep1: this.fb.control(null, Validators.required),
confirmStep2: this.fb.control(null)
});
public remove() {
this.form.removeControl('confirmStep1'); // идэшка светит красным
}
Ошибку то какую пишет?
дело в том, что типы нарушены тк this.fb.control(null) может вернуть null
Обсуждают сегодня