From 980c864f6871d5819edd948bd05e707ae44aee65 Mon Sep 17 00:00:00 2001 From: Austin Burdine Date: Tue, 16 Feb 2016 20:02:53 -0600 Subject: [PATCH] fix logging out from editor page closes #6514 - removes transition.abort from the signout method because it can override the ember-simple-auth's page refresh --- core/client/app/routes/signout.js | 1 - 1 file changed, 1 deletion(-) diff --git a/core/client/app/routes/signout.js b/core/client/app/routes/signout.js index 16605bb108..ab1a1abea8 100644 --- a/core/client/app/routes/signout.js +++ b/core/client/app/routes/signout.js @@ -18,7 +18,6 @@ export default AuthenticatedRoute.extend(styleBody, { this.get('notifications').clearAll(); if (canInvoke(transition, 'send')) { transition.send('invalidateSession'); - transition.abort(); } else { this.send('invalidateSession'); }