Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Form data are completely isolated from their source #9844
Because we will submit form data for mutation, and because we merge the mutation result back into the form data via `NaturalAbstractModelService.updateNow()`, then we must make triple-sure that the form is not populated with readonly objects coming from our API. Otherwise, a structure like the following would raise JS errors after mutation: ```json { id: 123, name: 'foo', product: { id: 456, quantity: 5, // This used to fail if fetched from mutation } } ```
- Loading branch information