Skip to content

Commit 33185bc

Browse files
committed
Merge branch 'release/1.1.1'
2 parents 0aaa47a + 5365f83 commit 33185bc

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes for Webhooks for Craft CMS
22

3+
## 1.1.1 - 2018-12-17
4+
5+
### Added
6+
- Webhooks is now translated into Chinese. ([#1](https://github.com/craftcms/webhooks/pull/1))
7+
8+
### Fixed
9+
- Fixed a bug where the “Extra User Attributes”, “Extra Sender Attributes”, and “Extra Event Attributes” fields were visible when editing an existing webhook with a GET request method.
10+
311
## 1.1.0 - 2018-12-13
412

513
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "craftcms/webhooks",
33
"description": "Post webhooks when events are triggered in Craft CMS.",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"type": "craft-plugin",
66
"keywords": [
77
"html",

src/templates/_edit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
errors: webhook.getErrors('url')
100100
}, urlInput) }}
101101

102-
<div id="type-settings--post" {% if webhook.type == 'GET' %}class="hidden"{% endif %}>
102+
<div id="type-settings--post" {% if webhook.type == 'get' %}class="hidden"{% endif %}>
103103
{{ forms.textareaField({
104104
label: 'Extra User Attributes'|t('webhooks'),
105105
instructions: 'List of additional attributes for the logged-in user that should be included in the webhook body.'|t('webhooks') ~ ' ' ~ '(Place separate attributes on new lines.)'|t('webhooks'),

0 commit comments

Comments
 (0)