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

after submit

Open postescu opened this issue 6 years ago • 1 comments

After submit the Pizzas order image list will not display the toppings. It resets and displays it on click

postescu avatar Dec 16 '18 11:12 postescu

Hi, i corrected this issue by using clones, otherwise the original ToppingItem[ ] is modified while preparing the DTO object. createPizzaOrderDto(data: IPizzaFormInterface): IPizzaFormInterface { const order = { customerDetails: this.simpleClone(data.customerDetails), pizzas: this.simpleClone(data.pizzas) }; [...] simpleClone(obj: any) { return Object.assign({}, obj); }

But i'm not allowed to make a pull request...

GuillaumeGSO avatar May 02 '19 15:05 GuillaumeGSO