diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index 13eed49..d1a41b7 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -10,7 +10,7 @@ export default Ember.Controller.extend({ // Manually clean up because there might not be a transition this.get('flashMessages').clearMessages(); let { identification, password } = this.getProperties('identification', 'password'); - this.set('loading', true) + this.set('loading', true); this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { this.transitionToRoute('login'); this.set('loading', false);