From e85ff83be6301042f692e876a4960dde6478b111 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Fri, 20 Sep 2019 11:36:00 -0400 Subject: [PATCH] Apply 403 alert fixes for Workflows, too --- awx/ui/client/src/templates/main.js | 3 +++ 1 file changed, 3 insertions(+) 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