This commit is contained in:
David Baker 2017-06-05 16:50:00 +01:00
parent 3c0290588c
commit 3dbea45426

View File

@ -507,6 +507,10 @@ module.exports = React.createClass({
this._onSetTheme(payload.value);
break;
case 'on_logging_in':
// We are now logging in, so set the state to reflect that
// and also that we're not ready (we'll be marked as logged
// in once the login completes, then ready once the sync
// completes).
this.setState({loggingIn: true, ready: false});
break;
case 'on_logged_in':