We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66f2b6 commit d3f2228Copy full SHA for d3f2228
lib/stores/route-store.js
@@ -167,8 +167,8 @@ function extractQuery(activePath) {
167
* Along the way, the given _routes array is populated with <Route> objects that
168
* are parents of the matching route, in the order they appear in the tree.
169
*/
170
-function findActiveParams(_activePath, tree, _routes) {
171
- activePath = _activePath.replace(queryMatcher, '');
+function findActiveParams(activePath, tree, _routes) {
+ activePath = activePath.replace(queryMatcher, '');
172
return findFirst(tree, function (node) {
173
var params = path.extractParams(node.computedPath, activePath);
174
0 commit comments