fix(router): ensuring MatchedUrl pass query params
This commit is contained in:
@ -111,10 +111,10 @@ export class ParamRoutePath implements RoutePath {
|
||||
for (var i = 0; i < this._segments.length; i += 1) {
|
||||
var pathSegment = this._segments[i];
|
||||
|
||||
currentUrlSegment = nextUrlSegment;
|
||||
if (pathSegment instanceof ContinuationPathSegment) {
|
||||
break;
|
||||
}
|
||||
currentUrlSegment = nextUrlSegment;
|
||||
|
||||
if (isPresent(currentUrlSegment)) {
|
||||
// the star segment consumes all of the remaining URL, including matrix params
|
||||
|
Reference in New Issue
Block a user