From b44b82dd52a2a658dbb5571c107ae0bc0cdcac8c Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Mon, 17 Feb 2014 15:50:42 -0500 Subject: [PATCH] Fixed js error post host edit save. --- awx/ui/static/js/helpers/Hosts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/Hosts.js b/awx/ui/static/js/helpers/Hosts.js index 88bb7c7096..104bd7e0ec 100644 --- a/awx/ui/static/js/helpers/Hosts.js +++ b/awx/ui/static/js/helpers/Hosts.js @@ -543,7 +543,7 @@ function($rootScope, $location, $log, $routeParams, Rest, Alert, HostForm, Gener // Update any titles attributes created by ApplyEllipsis if (old_name) { setTimeout(function() { - $('#hosts_table .host-name a[title="' + old_name + '"').attr('title', host.name); + $('#hosts_table .host-name a[title="' + old_name + '"]').attr('title', host.name); ApplyEllipsis('#hosts_table .host-name a'); // Close modal Wait('stop');