From 78fb6947040b3971b77de9b7d358ad161f5ebdea Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Mon, 11 May 2015 15:04:50 -0400 Subject: [PATCH] fixed 403 schedule errors not being displayed --- awx/ui/static/js/helpers/Schedules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/Schedules.js b/awx/ui/static/js/helpers/Schedules.js index ba0aa4eeb7..a32ea1abc2 100644 --- a/awx/ui/static/js/helpers/Schedules.js +++ b/awx/ui/static/js/helpers/Schedules.js @@ -341,7 +341,7 @@ export default Wait('stop'); } }) - .error( function() { + .error( function(data, status) { ProcessErrors(scope, data, status, null, { hdr: 'Error!', msg: 'Failed to update schedule ' + id + ' PUT returned: ' + status }); });