fix webhook method default value

This commit is contained in:
Keith Grant
2019-08-13 10:05:37 -07:00
committed by Jim Ladd
parent 62f31d6b3f
commit 15e6117472

View File

@@ -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",