diff --git a/src/index.js b/src/index.js index c50e6068..6a661a55 100644 --- a/src/index.js +++ b/src/index.js @@ -156,8 +156,8 @@ class Router extends Component { } shouldComponentUpdate(props) { - if (props.static!==true) return true; - return props.url!==this.props.url || props.onChange!==this.props.onChange; + if (props.url && props.url!==this.state.url) this.routeTo(props.url); + return !props.static || props.url!=this.props.url || props.onChange!=this.props.onChange; } /** Check if the given URL can be matched against any children */