[ONOS-8033] No Visible Indication for Active Applications in ONOS

Also tidied up onos.service.ts a bit for unused methods
Changed error message in Bazel build to point to new location under Bazel 1.0

Change-Id: Ie95f6fbb108386d3632cc8fa6656dc5b699023d9
diff --git a/web/gui2/src/main/webapp/app/view/cluster/cluster-details.directive.ts b/web/gui2/src/main/webapp/app/view/cluster/cluster-details.directive.ts
index 80fec4d..81f2f78 100644
--- a/web/gui2/src/main/webapp/app/view/cluster/cluster-details.directive.ts
+++ b/web/gui2/src/main/webapp/app/view/cluster/cluster-details.directive.ts
@@ -238,7 +238,9 @@
     }
 
     addCloseBtn(div) {
-        this.is.loadEmbeddedIcon(div, 'close', 20);
+        // This whole cluster app needs to be changed over to the Angular 7 style
+        // It is the only one remaining that uses the d3 structure
+        // this.is.loadEmbeddedIcon(div, 'close', 20);
         div.on('click', this.closePanel);
     }
 
@@ -253,7 +255,9 @@
     populateTop(details) {
         const propLabels = this.getLionProps();
 
-        this.is.loadEmbeddedIcon(iconDiv, 'node', 40);
+        // This whole cluster app needs to be changed over to the Angular 7 style
+        // It is the only one remaining that uses the d3 structure
+        // this.is.loadEmbeddedIcon(iconDiv, 'node', 40);
         top.select('h2').text(details.id);
 
         const tbody = topTable.append('tbody');