ui: remove a debug log

This commit is contained in:
Mikaël Cluseau
2025-06-29 08:26:43 +02:00
parent 48201132bd
commit 7a55735cc4

View File

@ -65,8 +65,6 @@ createApp({
(this.state.Clusters||[]).forEach((c) => views.push({type: "cluster", name: c.Name, title: `Cluster ${c.Name}`})); (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}`})); (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)); return views.filter((v) => v.name.includes(this.viewFilter));
}, },
viewObj() { viewObj() {