I have this reactive form in the Ionic3 framework, which I need to populate with data I retrieve from API. To do so I am using patchValue as I read somewhere that it is more reliable than setValue.
The problem I am facing is, it does not populate repeated form fields. To explain better I've created this example code.
I have tried other ways around like directly assigning data to the respective field instead of using for loop first, but that only populated 1 set instead of all 3.
Can someone point out what I am doing wrong, or provide a better solution?
Thank you