From b275fa81093e148fb2b0839af7e6e7cce338ccbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 25 Jun 2016 17:42:08 +0200 Subject: [PATCH] fix(alerts): fixed login and other alert popups not showing, fixes #5435 --- public/app/core/services/backend_srv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/services/backend_srv.ts b/public/app/core/services/backend_srv.ts index 412873f3677..17299f452a3 100644 --- a/public/app/core/services/backend_srv.ts +++ b/public/app/core/services/backend_srv.ts @@ -87,7 +87,7 @@ export class BackendSrv { }); } - this.$timeout(this.requestErrorHandler.bind(this), 50); + this.$timeout(this.requestErrorHandler.bind(this, err), 50); throw err; }); };