fixed issue on bulktagging for the advanced constraints

This commit is contained in:
Miriam Baglioni 2023-04-06 12:17:35 +02:00
parent ecc05fe0f3
commit cf3d0f4f83
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,8 @@ public class Community implements Serializable {
public boolean isValid() {
return !getSubjects().isEmpty()
|| !getProviders().isEmpty()
|| !getZenodoCommunities().isEmpty();
|| !getZenodoCommunities().isEmpty()
|| getConstraints() != null;
}
public String getId() {