From d44dcd5d1a892362e52cd8dfff110c2a88c1d102 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Fri, 12 Jun 2015 10:39:22 -0400 Subject: [PATCH] fixed socket tooltip label --- awx/ui/static/js/controllers/JobDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/controllers/JobDetail.js b/awx/ui/static/js/controllers/JobDetail.js index 1f7d8aad3f..169712ba8d 100644 --- a/awx/ui/static/js/controllers/JobDetail.js +++ b/awx/ui/static/js/controllers/JobDetail.js @@ -48,7 +48,7 @@ export function JobDetailController ($location, $rootScope, $filter, $scope, $co } if (hosts[host].changed) { hosts[host].changedTip = hosts[host].changed; - hosts[host].changedTip += (hosts[host].changed === 1) ? " host event" : " host eventss"; + hosts[host].changedTip += (hosts[host].changed === 1) ? " host event" : " host events"; hosts[host].changedTip += " changed."; } else { hosts[host].changedTip = "No host events changed.";