I have a defined route like so:
$router.config([
{ path: 'foo/bar/*baz', component: 'Foo', name: 'foo' }
]);
And when I programmatically $router.navigate(['foo', { baz: '1/2/3' }]) the wildcard portion of the url only shows the first part (in this case: /1)
What I believe that's happening is that the PathRecognizer isn't capturing the full wildcard and that the bug is in path_recognizer.ts in the recognize method