make label consistent with help text

This commit is contained in:
Jake McDermott
2019-09-17 17:03:16 -04:00
committed by Jeff Bradberry
parent 4ad5054222
commit 75d3359b6f
2 changed files with 3 additions and 3 deletions

View File

@@ -340,7 +340,7 @@ function(NotificationsList, i18n) {
ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)'
}, {
name: 'enable_webhook',
label: i18n._('Webhooks'),
label: i18n._('Enable Webhook'),
type: 'checkbox',
column: 2,
awPopOver: "<p>" + i18n._("Enable webhook for this job template.") + "</p>",

View File

@@ -164,10 +164,10 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n) {
ngDisabled: '!(workflow_job_template_obj.summary_fields.user_capabilities.edit || canAddOrEdit)'
}, {
name: 'enable_webhook',
label: i18n._('Webhooks'),
label: i18n._('Enable Webhook'),
type: 'checkbox',
column: 2,
awPopOver: "<p>" + i18n._("Enable webhooks for this workflow job template.") + "</p>",
awPopOver: "<p>" + i18n._("Enable webhook for this workflow job template.") + "</p>",
dataPlacement: 'right',
dataTitle: i18n._('Enable Webhook'),
dataContainer: "body",