Fixed typo in filtering of associated content types
parent
46d02b28f9
commit
eeef5bcb08
|
|
@ -127,7 +127,7 @@ public class SelectType extends CMSForm implements PrintListener,
|
|||
// .collect(Collectors.toList());
|
||||
|
||||
final List<ContentTypeInfo> notAssignedTypes = availableTypes.stream()
|
||||
.filter(type -> assignedTypes.contains(type.getContentItemClass()
|
||||
.filter(type -> !assignedTypes.contains(type.getContentItemClass()
|
||||
.getName()))
|
||||
.collect(Collectors.toList());
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue