diff --git a/lemur/static/app/angular/app.js b/lemur/static/app/angular/app.js index 402183f9..a941814d 100644 --- a/lemur/static/app/angular/app.js +++ b/lemur/static/app/angular/app.js @@ -92,7 +92,7 @@ lemur.factory('LemurRestangular', function (Restangular, $location, $auth) { }); RestangularConfigurer.setErrorInterceptor(function(response) { - if (response.status == 400) { + if (response.status === 400) { if (response.data.message) { var data = ''; _.each(response.data.message, function (value, key) {