bug优化

This commit is contained in:
艾竹
2025-01-19 11:02:03 +08:00
parent 4582897817
commit ddf89e21e4
12 changed files with 160 additions and 14 deletions

View File

@@ -360,6 +360,14 @@ namespace AIStudio.Wpf.DiagramDesigner
return false;
}
if (output.ErrorCode == ConnectorErrorCode.ExecuteErr)
{
input.ErrorCode = ConnectorErrorCode.ExecuteErr;
input.ErrorMessage = "无效的输入";
input.ColorViewModel.FillColor.Color = Colors.DarkRed;
return false;
}
return true;
}