From e55630f9865d21bafe9a05070814fc0d7877247c Mon Sep 17 00:00:00 2001 From: STEINNI Date: Mon, 9 Mar 2026 20:53:15 +0000 Subject: [PATCH] graflow: fix delete wires --- bzGraflow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bzGraflow.js b/bzGraflow.js index 65a593c..189251c 100644 --- a/bzGraflow.js +++ b/bzGraflow.js @@ -1315,6 +1315,7 @@ class EditWires{ if((e.key == 'Delete') && this.currentlySelectedWire) { this.graflow.flow.links = this.graflow.flow.links.filter(link => link.id != this.currentlySelectedWire.dataset.id) this.graflow.stagedWires[this.currentlySelectedWire.dataset.id].remove() + delete(this.graflow.stagedWires[this.currentlySelectedWire.dataset.id]) this.currentlySelectedWire.remove() this.currentlySelectedWire = null return