I am attempting to add a radio button group to a FormArray. The issue is that when I select a value, it changes the value for every member of the FormArray. I know this has to d
Yes No
Your addDefinition is wrong, you have not "this.definitions"
addDefinition() { const definitions = this.sensorForm.get('definitions') as FormArray; definitions.push(this.createDefinition()); }