From 75d3359b6f7a17e02bb669277726bc3d3b353a37 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Tue, 17 Sep 2019 17:03:16 -0400 Subject: [PATCH] make label consistent with help text --- .../client/src/templates/job_templates/job-template.form.js | 2 +- awx/ui/client/src/templates/workflows.form.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/client/src/templates/job_templates/job-template.form.js b/awx/ui/client/src/templates/job_templates/job-template.form.js index a73c35f97d..037d4f1ff3 100644 --- a/awx/ui/client/src/templates/job_templates/job-template.form.js +++ b/awx/ui/client/src/templates/job_templates/job-template.form.js @@ -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: "

" + i18n._("Enable webhook for this job template.") + "

", diff --git a/awx/ui/client/src/templates/workflows.form.js b/awx/ui/client/src/templates/workflows.form.js index 519786ee7e..848ba7a471 100644 --- a/awx/ui/client/src/templates/workflows.form.js +++ b/awx/ui/client/src/templates/workflows.form.js @@ -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: "

" + i18n._("Enable webhooks for this workflow job template.") + "

", + awPopOver: "

" + i18n._("Enable webhook for this workflow job template.") + "

", dataPlacement: 'right', dataTitle: i18n._('Enable Webhook'), dataContainer: "body",