Browse Source

fix(alerts): fixed login and other alert popups not showing, fixes #5435

Torkel Ödegaard 9 years ago
parent
commit
b275fa8109
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/core/services/backend_srv.ts

+ 1 - 1
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;
     });
   };