summaryrefslogtreecommitdiffstats
path: root/webapp/components/login/login.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-30 11:07:03 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-30 15:29:21 -0400
commitbf90d98136965dfd37546e5ecb23d8c6970bed8a (patch)
treeb2c3944a2a33d20cc566318ab44aa12eecd51d8d /webapp/components/login/login.jsx
parent8283c18cb0ab3ef7a07f6a6f2d5ae61c109dae96 (diff)
downloadchat-bf90d98136965dfd37546e5ecb23d8c6970bed8a.tar.gz
chat-bf90d98136965dfd37546e5ecb23d8c6970bed8a.tar.bz2
chat-bf90d98136965dfd37546e5ecb23d8c6970bed8a.zip
Fixing session and logout errors
Diffstat (limited to 'webapp/components/login/login.jsx')
-rw-r--r--webapp/components/login/login.jsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/webapp/components/login/login.jsx b/webapp/components/login/login.jsx
index 7b370a939..e867af47a 100644
--- a/webapp/components/login/login.jsx
+++ b/webapp/components/login/login.jsx
@@ -27,7 +27,9 @@ export default class Login extends React.Component {
this.preSubmit = this.preSubmit.bind(this);
this.submit = this.submit.bind(this);
- this.state = this.getStateFromStores();
+ const state = this.getStateFromStores();
+ state.doneCheckLogin = false;
+ this.state = state;
}
componentDidMount() {
TeamStore.addChangeListener(this.onTeamChange);
@@ -44,8 +46,7 @@ export default class Login extends React.Component {
}
getStateFromStores() {
return {
- currentTeam: TeamStore.getByName(this.props.params.team),
- doneCheckLogin: false
+ currentTeam: TeamStore.getByName(this.props.params.team)
};
}
onTeamChange() {