@bian-womp/spark-workbench 0.3.85 → 0.3.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/cjs/index.cjs
CHANGED
|
@@ -824,8 +824,7 @@ class InMemoryWorkbench extends AbstractWorkbench {
|
|
|
824
824
|
}
|
|
825
825
|
const pos = positions[nodeId];
|
|
826
826
|
const size = sizes[nodeId];
|
|
827
|
-
const
|
|
828
|
-
const inputs = this.excludeHandlesFromInputs(allInputs[nodeId] || {}, inboundHandlesToExclude);
|
|
827
|
+
const inputs = allInputs[nodeId] || {};
|
|
829
828
|
const newNodeId = this.addNode({
|
|
830
829
|
typeId: n.typeId,
|
|
831
830
|
params: n.params,
|
|
@@ -880,8 +879,7 @@ class InMemoryWorkbench extends AbstractWorkbench {
|
|
|
880
879
|
try {
|
|
881
880
|
const pos = this.getPositions()[nodeId];
|
|
882
881
|
const size = this.getSizes()[nodeId];
|
|
883
|
-
const
|
|
884
|
-
const inputs = this.excludeHandlesFromInputs(runner.getInputs(this.def)[nodeId] || {}, inboundHandlesToExclude);
|
|
882
|
+
const inputs = runner.getInputs(this.def)[nodeId] || {};
|
|
885
883
|
const newNodeId = this.addNode({
|
|
886
884
|
typeId: n.typeId,
|
|
887
885
|
params: n.params,
|