diff options
author | elijah <elijah@riseup.net> | 2016-09-05 17:34:11 -0700 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-06 13:55:16 -0400 |
commit | 65c2c18653feb5f6485710e9656b19e368bb2826 (patch) | |
tree | a279d6f4eb502b30606870cd34af2896eef7321d /www/app/components/login.js | |
parent | b047beb3e50a541564d2ab6ff17491608a630101 (diff) |
[feature] webkit support: get the js and css working in older webkit engines
Diffstat (limited to 'www/app/components/login.js')
-rw-r--r-- | www/app/components/login.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/app/components/login.js b/www/app/components/login.js index 4f7b6289..fe4ef5b2 100644 --- a/www/app/components/login.js +++ b/www/app/components/login.js @@ -274,7 +274,7 @@ class Login extends React.Component { if (!this.maySubmit()) { return } this.setState({loading: true}) - let account = new Account(this.state.username) + let account = Account.find(this.state.username) account.login(this.state.password).then( account => { this.setState({loading: false}) |