fix(router): fix some empty path related navigation bugs#26243
Closed
miginmrs wants to merge 2 commits into
Closed
fix(router): fix some empty path related navigation bugs#26243miginmrs wants to merge 2 commits into
miginmrs wants to merge 2 commits into
Conversation
Contributor
Author
|
@jasonaden @adriensamson @IgorMinar, Please some review, I get this exception with TravisCI but not locally and I don't understand what my tiny changes in route component have to do with render3 directive injection in core component ? const App = createComponent('app', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
elementStart(0, 'div', ['dirB', '']);
element(1, 'div', ['dirA', '', 'dirC', '']);
elementEnd();
}
}, 2, 0, [DirA, DirB, DirC]);
expect(() => {
(DirA as any)['__NG_ELEMENT_ID__'] = 1;
(DirC as any)['__NG_ELEMENT_ID__'] = 257;
new ComponentFixture(App);
}).toThrowError(/Injector: NOT_FOUND \[DirB\]/);Thank you very much for your attention |
Contributor
jasonaden
approved these changes
Dec 5, 2018
stop adding next path of pathless activated route to the url PR Close angular#26224
96aaf56 to
2b455d3
Compare
Contributor
|
This looks good. I rebased and pushed back, so you'll see a force push on this branch. Will try to get this merged quickly. |
Contributor
IgorMinar
pushed a commit
that referenced
this pull request
Dec 5, 2018
IgorMinar
pushed a commit
that referenced
this pull request
Dec 5, 2018
IgorMinar
pushed a commit
that referenced
this pull request
Dec 5, 2018
IgorMinar
added a commit
to IgorMinar/angular
that referenced
this pull request
Dec 6, 2018
…d outlet (angular#26243)" This reverts commit 20cef50. Breaks Pantheon see cl/224256517.
IgorMinar
added a commit
to IgorMinar/angular
that referenced
this pull request
Dec 6, 2018
…ngular#26243)" This reverts commit ccc77ca. Breaks Pantheon see cl/224256517.
IgorMinar
added a commit
that referenced
this pull request
Dec 6, 2018
IgorMinar
added a commit
that referenced
this pull request
Dec 6, 2018
IgorMinar
added a commit
that referenced
this pull request
Dec 6, 2018
IgorMinar
added a commit
that referenced
this pull request
Dec 6, 2018
|
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fix some empty path related navigation bugs
PR Close #26224, #10726
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
Issue Number: #26224 , #10726
What is the new behavior?
Does this PR introduce a breaking change?