From f893e4b00bb3cf86fe2c6b9bb226288e5588194b Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Wed, 3 Dec 2014 16:33:33 -0500 Subject: [PATCH] Fixed small issue with JT form vars A '$' got deleted somewhere along the line --- 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 c2fdf4464d..4eaaae09ca 100644 --- a/awx/ui/static/js/controllers/JobTemplates.js +++ b/awx/ui/static/js/controllers/JobTemplates.js @@ -264,7 +264,7 @@ function JobTemplatesAdd($scope, $rootScope, $compile, $location, $log, $routePa callback = function() { // Make sure the form controller knows there was a change - $scope[form.name + '_form'].setDirty(); + $scope[form.name + '_form'].$setDirty(); }; $scope.mode = "add"; $scope.parseType = 'yaml';