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
Copy file name to clipboardExpand all lines: docs/guides/overview.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -360,13 +360,12 @@ handler [in the `master-detail` example](https://github.com/rackt/react-router/b
360
360
If you would rather force route handlers to re-mount when transitioning between dynamic segments, you can assign a unique key to your route handler component to bypass this optimization:
361
361
362
362
```js
363
-
// assuming App is top-level route
364
363
var App =React.createClass({
365
364
366
365
mixins: [Router.State],
367
366
368
367
getHandlerKey:function () {
369
-
var childDepth =1;
368
+
var childDepth =1;// assuming App is top-level route
0 commit comments