From acf058a73064d8194d6e0b9d87aa0382d29ef01d Mon Sep 17 00:00:00 2001 From: astrot1988 Date: Thu, 2 Mar 2023 13:09:46 +0300 Subject: [PATCH] fix: subgraph remove output --- src/nodes/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/base.js b/src/nodes/base.js index a8518dbbe..79f2aa05d 100755 --- a/src/nodes/base.js +++ b/src/nodes/base.js @@ -264,7 +264,7 @@ }; Subgraph.prototype.onSubgraphRemovedOutput = function(name) { - var slot = this.findInputSlot(name); + var slot = this.findOutputSlot(name); if (slot == -1) { return; }