diff --git a/awx/ui/client/src/templates/job_templates/add-job-template/job-template-add.controller.js b/awx/ui/client/src/templates/job_templates/add-job-template/job-template-add.controller.js index bbb97b3684..d6f26092f7 100644 --- a/awx/ui/client/src/templates/job_templates/add-job-template/job-template-add.controller.js +++ b/awx/ui/client/src/templates/job_templates/add-job-template/job-template-add.controller.js @@ -287,20 +287,18 @@ if (data.related && data.related.callback) { Alert('Callback URL', -`
Host callbacks are enabled for this template. The callback URL is:
-- - ${$scope.callback_server_path} - ${data.related.callback} - -
-The host configuration key is: - - ${$filter('sanitize')(data.host_config_key)} - -
-+ + ${$scope.callback_server_path} + ${data.related.callback} + +
+The host configuration key is: + + ${$filter('sanitize')(data.host_config_key)} + +
`, 'alert-danger', saveCompleted, null, null, null, true); } diff --git a/awx/ui/client/src/templates/job_templates/edit-job-template/job-template-edit.controller.js b/awx/ui/client/src/templates/job_templates/edit-job-template/job-template-edit.controller.js index 83df997d81..f4df25796b 100644 --- a/awx/ui/client/src/templates/job_templates/edit-job-template/job-template-edit.controller.js +++ b/awx/ui/client/src/templates/job_templates/edit-job-template/job-template-edit.controller.js @@ -423,23 +423,20 @@ export default if (data.related && data.related.callback) { Alert('Callback URL', -` -Host callbacks are enabled for this template. The callback URL is:
-- - ${$scope.callback_server_path} - ${data.related.callback} - -
-The host configuration key is: - - ${$filter('sanitize')(data.host_config_key)} - -
-+ + ${$scope.callback_server_path} + ${data.related.callback} + +
+The host configuration key is: + + ${$filter('sanitize')(data.host_config_key)} + +
`, - 'alert-info', saveCompleted, null, null, + 'alert-danger', saveCompleted, null, null, null, true); } var orgDefer = $q.defer();