@bian-womp/spark-workbench 0.3.41 → 0.3.42

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
@@ -4176,7 +4176,7 @@ function WorkbenchProvider({ wb, runner, overrides, uiVersion, children, }) {
4176
4176
  const before = JSON.stringify(n.resolvedHandles || {});
4177
4177
  const after = JSON.stringify(updated);
4178
4178
  if (before !== after) {
4179
- wb.updateResolvedHandles(n.nodeId, updated);
4179
+ wb.updateResolvedHandles(n.nodeId, updated, { dry: true });
4180
4180
  }
4181
4181
  }
4182
4182
  }
@@ -4508,7 +4508,8 @@ function WorkbenchProvider({ wb, runner, overrides, uiVersion, children, }) {
4508
4508
  }
4509
4509
  }
4510
4510
  }
4511
- else if (event.change?.type !== "setInputs") {
4511
+ else if (event.change?.type !== "setInputs" &&
4512
+ event.change?.type !== "updateResolvedHandles") {
4512
4513
  await runner.update(event.def, { dry: event.dry });
4513
4514
  }
4514
4515
  if (event.commit) {