fix(router): fix lazy loading of aux routes#23459
fix(router): fix lazy loading of aux routes#23459jasonaden wants to merge 1 commit intoangular:masterfrom
Conversation
6648737 to
c474619
Compare
|
You can preview 6648737 at https://pr23459-6648737.ngbuilds.io/. |
|
You can preview c474619 at https://pr23459-c474619.ngbuilds.io/. |
|
@jasonaden this change fails in g3, can you please investigate and get the presubmit to pass? |
|
You can preview d10eb7b at https://pr23459-d10eb7b.ngbuilds.io/. |
|
The new component is marked as entry component in the testing module, not the production variant. Is that correct? I would currently expect the dynamically referenced |
|
@JoostK Nope, it was wrong. It's been adjusted. 👍 |
|
You can preview 1d27d08 at https://pr23459-1d27d08.ngbuilds.io/. |
|
You can preview 7784ce8 at https://pr23459-7784ce8.ngbuilds.io/. |
|
Hi @jasonaden |
|
@csharma2212 Angular 6.0.5 |
|
Sorry but any Example is removed from web anyone have a example ? |
|
@DrMabuse23 This is a fix, not a feature, thus nothing changed in usage, what did you expect in an example? |
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Fixes #10981
This PR adds an
EmptyOutletComponentthat becomes the default in the case of a route config with apath,outlet, andchildrendefined, but noComponent. In the past, this would throw an error. The workaround was to define an empty component.This PR makes that workaround the default for this scenario.