From c7a34023b51390a45cf4ab0f498020e061d8e9e3 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 20 Oct 2015 20:35:20 -0700 Subject: [PATCH] Missing semicolon in login controller --- app/pods/login/controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);