From 17b921db634e68924a60ef38e02acc3bcaedf231 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Mon, 8 Jun 2015 14:57:06 -0400 Subject: [PATCH] fixed host graph count for succesful hosts --- .../dashboard/graphs/host-status/host-status-graph.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/dashboard/graphs/host-status/host-status-graph.directive.js b/awx/ui/static/js/dashboard/graphs/host-status/host-status-graph.directive.js index 34a3d65fb0..8fb44090b8 100644 --- a/awx/ui/static/js/dashboard/graphs/host-status/host-status-graph.directive.js +++ b/awx/ui/static/js/dashboard/graphs/host-status/host-status-graph.directive.js @@ -56,7 +56,7 @@ function HostStatusGraph($compile, $window, adjustGraphSize) { data = [ { "label": "Successful", "color": "#60D66F", - "value" : data.hosts.total + "value" : data.hosts.total - data.hosts.failed } , { "label": "Failed", "color" : "#ff5850",