Replies: 1 comment 1 reply
-
OK, it seems like I have to define the FormArray like so: FormArray<Person, FormControl<Person>> If I do that, it seems to be working as expected so far. Is this intended usage? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm struggling to get my objects into a FormArray. Given the following code, I get an error on the
push(ctrl)
part stating:If I change the form control creation to this:
then the error changes the person parameter saying this:
I'm not wanting to use a
FormGroup
for the person, just a normalFormControl
. Guidance would be greatly appreciated.Beta Was this translation helpful? Give feedback.
All reactions