From b985f1e5f075f865b76688910ec4221cd3725c53 Mon Sep 17 00:00:00 2001 From: overcuriousity Date: Wed, 17 Sep 2025 21:15:52 +0200 Subject: [PATCH] potential bugfix for the right click hiding --- static/js/graph.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/graph.js b/static/js/graph.js index a6693f0..05a89ce 100644 --- a/static/js/graph.js +++ b/static/js/graph.js @@ -1331,6 +1331,7 @@ class GraphManager { timestamp: Date.now() }; + const updates = nodesToHide.map(id => ({ id: id, hidden: true })); this.nodes.update(updates); this.addToHistory('hide', historyData);