From 7a55735cc4657d02b50d84ff246c8d8c6e2f26c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Sun, 29 Jun 2025 08:26:43 +0200 Subject: [PATCH] ui: remove a debug log --- html/ui/js/app.js | 2 -- 1 file changed, 2 deletions(-) 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() {