Open jalbertoa opened 5 years ago
When loading the DEMO json, doesn't work due a small bug...
https://github.com/scopsy/angular-forms-example/blob/1f3819bc092ef8d9fac0e8506f264428d03802cd/src/app/containers/pizza-form-container/services/pizza-form.service.ts#L53
const pizzaGroup = this.getPizzaFormGroup(); this.pizzasArray.push(this.getPizzaFormGroup());** --> this.pizzasArray.push(pizzaGroup);
Hi, I tested this correction, it works. this.pizzasArray.push(pizzaGroup)
this.pizzasArray.push(pizzaGroup)
When loading the DEMO json, doesn't work due a small bug...
https://github.com/scopsy/angular-forms-example/blob/1f3819bc092ef8d9fac0e8506f264428d03802cd/src/app/containers/pizza-form-container/services/pizza-form.service.ts#L53
const pizzaGroup = this.getPizzaFormGroup(); this.pizzasArray.push(this.getPizzaFormGroup());** --> this.pizzasArray.push(pizzaGroup);