Fixed pre-delete warning check

This commit is contained in:
2023-05-08 15:14:03 -05:00
parent 265847e01a
commit db770c7e03
2 changed files with 26 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public class DeleteAction
recordsWithValidationErrors.add(record);
primaryKeysToRemoveFromInput.add(record.getValue(primaryKeyField));
}
else
else if(CollectionUtils.nullSafeHasContents(record.getWarnings()))
{
recordsWithValidationWarnings.add(record);
}