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,7 +226,8 @@ public partial class MainWindow : Window
{
if (item is StuffedDataModel model)
{
model.IsIgnore = true;
if (model.IsError)
model.IsIgnore = true;
}
}
}