Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(navigationState): avoid undefined key for root scenes
This is one of the issues I've been investigating within my app. Apparently aksonov#911 broke scene key generation when the scene has no parent. Before: ```javascript Object {key: "undefined_undefined_0_home_", name: "home", sceneKey: "home_", parent: "home", type: "REACT_NATIVE_ROUTER_FLUX_PUSH"…} ``` After: ```javascript Object {key: "0_home_", name: "home", sceneKey: "home_", parent: "home", type: "REACT_NATIVE_ROUTER_FLUX_PUSH"…} ```
- Loading branch information