From dfd2246ef5697b127b8d2577b6fe6fdbd039b480 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Thu, 18 Jun 2015 10:27:43 -0400 Subject: [PATCH] fixed alert displaying from escaping html --- awx/ui/static/js/controllers/JobTemplates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/controllers/JobTemplates.js b/awx/ui/static/js/controllers/JobTemplates.js index 6349dc0ddb..201ca3ca4b 100644 --- a/awx/ui/static/js/controllers/JobTemplates.js +++ b/awx/ui/static/js/controllers/JobTemplates.js @@ -468,7 +468,7 @@ export function JobTemplatesAdd($filter, $scope, $rootScope, $compile, $location break; } if (msg) { - Alert('Warning', msg, 'alert-info'); + Alert('Warning', msg, 'alert-info', null, null, null, null, true); } }) .error(function (data, status) {