File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,17 @@ export default class LinkContainer extends React.Component {
31
31
delete props . state ;
32
32
33
33
props . onClick = this . onClick ;
34
- props . href = history . createHref ( to , query ) ;
35
- if ( hash ) {
36
- props . href += hash ;
34
+
35
+ // Ignore if rendered outside the context of history, simplifies unit testing.
36
+ if ( history ) {
37
+ props . href = history . createHref ( to , query ) ;
38
+
39
+ if ( hash ) {
40
+ props . href += hash ;
41
+ }
42
+
43
+ props . active = history . isActive ( to , query , onlyActiveOnIndex ) ;
37
44
}
38
- props . active = history . isActive ( to , query , onlyActiveOnIndex ) ;
39
45
40
46
return React . cloneElement ( React . Children . only ( children ) , props ) ;
41
47
}
@@ -53,7 +59,7 @@ LinkContainer.propTypes = {
53
59
} ;
54
60
55
61
LinkContainer . contextTypes = {
56
- history : React . PropTypes . object . isRequired
62
+ history : React . PropTypes . object
57
63
} ;
58
64
59
65
LinkContainer . defaultProps = {
You can’t perform that action at this time.
0 commit comments