You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix($urlMatcherFactory): fix mixed path/query params ordering problem
If a state defined a query param and a substate defined a path param, the URLs were generated and matched in the wrong order. A substate creates its UrlMatcher using .concat() and a concat()'d UrlMatcher assumed the parent params order mattered. Switched to populating an array of params in the order they were parsed in UrlMatcher constructor.
Closes#1543
0 commit comments