From dc9a27d9aa7fea8b194fbd44bd1271da712c5b68 Mon Sep 17 00:00:00 2001 From: Thibault Cohen Date: Tue, 23 Jun 2015 13:59:25 -0400 Subject: [PATCH] Fix service list in host detail page and add missing ';' Change-Id: I694c20a9912367215a8b26d23e4e2bad630747f7 --- .../host/host_services_list/host_services_list.html | 10 +++++----- .../service/service_graphs/service_graphs.js | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/components/host/host_services_list/host_services_list.html b/app/components/host/host_services_list/host_services_list.html index 9b11b69..cfcf531 100644 --- a/app/components/host/host_services_list/host_services_list.html +++ b/app/components/host/host_services_list/host_services_list.html @@ -1,4 +1,4 @@ -
+

Services

@@ -10,10 +10,10 @@ - - - + + +
{{service.service_description}} - {{service.acknowledged}}{{service.state}}
{{service.service_description}} + {{service.acknowledged}}{{service.state}}
diff --git a/app/components/service/service_graphs/service_graphs.js b/app/components/service/service_graphs/service_graphs.js index 001c0a1..7f35be1 100644 --- a/app/components/service/service_graphs/service_graphs.js +++ b/app/components/service/service_graphs/service_graphs.js @@ -10,10 +10,10 @@ angular.module('bansho.service.graphs', []) angular.forEach(metric_names, function (metric) { var metricName = metric.metric_name.substr(7); $scope.iframeUrls[metricName] = iframeUrl.getIFrameUrl(metric.metric_name, service.host_name, service.service_description); - }) - }) + }); + }); } - }) + }); }]) .directive('banshoServiceGraphs', ['iframeUrl', function (iframeUrl) {