I have a model with angular 2 that has a property of type FormArray . When I call the myForm.reset(this._originalValue) method, the number of elements in the FormArray not equal to reset to the original value.
Here is the plunker showing the problem: https://plnkr.co/edit/gRHD5Ikbm1aGzFQUF2nn?p=preview
Is there a way to force the myForm.reset() reset method to count the number of elements in properties of type FormArray ? Or do I need to manually reset it?
angular angular2-forms
Amanda kitson
source share