Ensure that loading state is reset when showing app panel.

This commit is contained in:
Richard Lewis 2017-11-09 14:28:24 +00:00
parent f796bc79c3
commit da8b1ff1cd

View file

@ -176,6 +176,10 @@ export default React.createClass({
if (nextProps.url !== this.props.url) {
this._getNewUrlState(nextProps);
this.setScalarToken();
} else if (nextProps.show && !this.props.show) {
this.setState({
loading: true,
});
}
},