From 15e61174720e5f7cf430c1357d1e8248b74b0d3a Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Tue, 13 Aug 2019 10:05:37 -0700 Subject: [PATCH] fix webhook method default value --- awx/ui/client/src/notifications/notificationTemplates.form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/notifications/notificationTemplates.form.js b/awx/ui/client/src/notifications/notificationTemplates.form.js index e4cd5ade7f..bb02c7f43c 100644 --- a/awx/ui/client/src/notifications/notificationTemplates.form.js +++ b/awx/ui/client/src/notifications/notificationTemplates.form.js @@ -428,7 +428,7 @@ export default ['i18n', function(i18n) { dataTitle: i18n._('HTTP Method'), type: 'select', ngOptions: 'choice.id as choice.name for choice in httpMethodChoices', - default: 'post', + default: 'POST', awPopOver: i18n._('Specify an HTTP method for the webhook. Acceptable choices are: POST or PUT'), awRequiredWhen: { reqExpression: "webhook_required",