解决了流程接口节点执行后,后续调用的节点无法正确获取入参的问题

This commit is contained in:
fengjiayi
2025-05-30 10:53:33 +08:00
parent a112d0287f
commit 423fc0d8fc
6 changed files with 103 additions and 9 deletions

View File

@@ -49,7 +49,7 @@ namespace Serein.Workbench.ViewModels
partial void OnSelectedTabChanged(FlowEditorTabModel value)
{
flowNodeService.CurrentSelectCanvas = value.Content;
flowNodeService.CurrentSelectCanvas = value?.Content;
}