patch value in form array code example
Example 1: patch value in form array
this.items.at(index).patchValue(...);
for patching value in a formArray
Example 2: formarray set value at index
((this.form.get('controls') as FormArray).at(index) as FormGroup).get('description').patchValue(item.description);