angular-forms-example icon indicating copy to clipboard operation
angular-forms-example copied to clipboard

pizzaGroup

Open jalbertoa opened this issue 5 years ago • 1 comments

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);

jalbertoa avatar Mar 16 '19 23:03 jalbertoa

Hi, I tested this correction, it works. this.pizzasArray.push(pizzaGroup)

GuillaumeGSO avatar May 02 '19 15:05 GuillaumeGSO