Fix spelling mistake and display mistake in 404 view

This commit is contained in:
Joseph Schorr 2016-11-28 15:28:57 -05:00
parent 03cf6d1499
commit 5f9efa2fe9
2 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@
}]);
function ErrorViewCtrl($scope, ApiService, $routeParams, UserService) {
$scope.info = window.__error_info || {};
$scope.info = window.__error_info;
$scope.code = window.__error_code || 404;
}
}());