105040 Update 忽略异常时只处理有异常的项

This commit is contained in:
lihanbo 2024-10-28 14:30:24 +08:00
parent 67a9e0c416
commit ba6c125c95
1 changed files with 2 additions and 1 deletions

View File

@ -226,6 +226,7 @@ public partial class MainWindow : Window
{ {
if (item is StuffedDataModel model) if (item is StuffedDataModel model)
{ {
if (model.IsError)
model.IsIgnore = true; model.IsIgnore = true;
} }
} }