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 fb6d1a5 commit 5115866Copy full SHA for 5115866
modules/components/Route.js
@@ -446,7 +446,8 @@ function computeHandlerProps(matches, query) {
446
props.activeRoute = null;
447
}
448
449
- childHandler = function (props, addedProps, children) {
+ childHandler = function (props, addedProps) {
450
+ var children = Array.prototype.slice.call(arguments, 2);
451
return route.props.handler.apply(null, [mergeProperties(props, addedProps)].concat(children));
452
}.bind(this, props);
453
0 commit comments