Fix erroneous job template admin error message

This commit is contained in:
Marliana Lara
2018-04-10 15:39:21 -04:00
parent 0f79c940a0
commit 07a01e741b

View File

@@ -102,7 +102,7 @@ export default
}
})
.catch( (error) => {
if (error.status_code === 403) {
if (error.status === 403) {
/* user doesn't have access to see the project, no big deal. */
$scope.disablePlaybookBecausePermissionDenied = true;
} else {