I have an object coming from my API and when loading a modal I need to 'duplicate' the object to another.
This works:
this.servicesForm.services = this.team.services;
// New object // API object
The issue now is that I DON'T want the team.services object to be bound to and update when I update the servicesForm.services object.
How do I do that?