I need to set a value in a nested control in a FormBuiler and the model is the following:
this.addAccForm = this.fb.group({ accid: [\'\', Validators.re
nested form patchvalue you need to use Array after object like this:
this.userform.patchvalue({ name: 'Ajay', approvers: [ {id:1} ] })