mirror of
https://github.com/ansible/awx.git
synced 2026-03-27 13:55:04 -02:30
Auth timeout on survey edit
The UI would error out on the console
This commit is contained in:
@@ -152,9 +152,10 @@ angular.module('SurveyHelper', [ 'Utilities', 'RestServices', 'SchedulesHelper',
|
|||||||
|
|
||||||
})
|
})
|
||||||
.error(function (data, status) {
|
.error(function (data, status) {
|
||||||
ProcessErrors(scope, data, status, { hdr: 'Error!',
|
ProcessErrors(scope, data, status, null, { hdr: 'Error!',
|
||||||
msg: 'Failed to retrieve organization: ' + $routeParams.id + '. GET status: ' + status });
|
msg: 'Failed to retrieve survey. GET returned status: ' + status });
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}])
|
}])
|
||||||
|
|||||||
Reference in New Issue
Block a user