Always show the spinner during the first sync

Before, we were relying on the fact that `ready` would still have
been false from before. This was not the case, for example, if we
naviagted straight to /#/login (which causes a guest session to be
set up and the sync for that completes after we navigate to the
login screen).

We should always mark ourselves as not-ready after login since we
will always have to wait for the sync.
pull/21833/head
David Baker 2017-06-05 16:17:32 +01:00
parent c5cd6aecd6
commit 3c0290588c
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ module.exports = React.createClass({
this._onSetTheme(payload.value);
break;
case 'on_logging_in':
this.setState({loggingIn: true});
this.setState({loggingIn: true, ready: false});
break;
case 'on_logged_in':
this._onLoggedIn(payload.teamToken);