diff --git a/html/ui/js/app.js b/html/ui/js/app.js
index cca57ed..4097b60 100644
--- a/html/ui/js/app.js
+++ b/html/ui/js/app.js
@@ -65,8 +65,6 @@ createApp({
(this.state.Clusters||[]).forEach((c) => views.push({type: "cluster", name: c.Name, title: `Cluster ${c.Name}`}));
(this.state.Hosts ||[]).forEach((c) => views.push({type: "host", name: c.Name, title: `Host ${c.Name}`}));
- console.log("views:",views);
-
return views.filter((v) => v.name.includes(this.viewFilter));
},
viewObj() {