Reactive Forms two-way binding error: Cannot assign to read only property
this.modifiedUser
turned out to be indeed readonly. I had to simply make a deep copy of user
object to resolve the issue.
this.modifiedUser
turned out to be indeed readonly. I had to simply make a deep copy of user
object to resolve the issue.