diff --git a/awx/ui/client/src/templates/main.js b/awx/ui/client/src/templates/main.js index a1aa074d49..fb4dab309a 100644 --- a/awx/ui/client/src/templates/main.js +++ b/awx/ui/client/src/templates/main.js @@ -483,6 +483,9 @@ angular.module('templates', [surveyMaker.name, jobTemplates.name, labels.name, p return data.webhook_key || ''; }) .catch(({data, status}) => { + if (status === 403) { + return; + } ProcessErrors(null, data, status, null, { hdr: i18n._('Error!'), msg: i18n._('Failed to get webhook key GET returned ') + status