Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly associate props with factory and owner in FactoryManager
Previously, we stomped the `props` binding with an `Object.assign()`, which meant that the original empty props object would get GC'd after the end of the method and the item passed into the class created at the end of the `FactoryManager.create` call would be a *different* object, which does *not* have the factory or owner associations. Fixes #20023 (cherry picked from commit d79edb3)
- Loading branch information