normalize http method choice values

This commit is contained in:
Jake McDermott
2019-07-23 19:24:00 -04:00
parent 7580491f1a
commit 1fe18dc588
4 changed files with 11 additions and 7 deletions

View File

@@ -140,8 +140,8 @@ export default ['Rest', 'Wait',
});
$scope.httpMethodChoices = [
{'id': 'post', 'name': i18n._('POST')},
{'id': 'put', 'name': i18n._('PUT')},
{'id': 'POST', 'name': i18n._('POST')},
{'id': 'PUT', 'name': i18n._('PUT')},
];
CreateSelect2({
element: '#notification_template_http_method',