Resolve RED-7679 "Bbb2" #187

Closed
ali.oezyetimoglu1 wants to merge 4 commits from RED-7679-BBB2 into master
Showing only changes of commit 1098784e2d - Show all commits

View File

@ -429,7 +429,8 @@ public class ComponentCreationService {
.sorted(Comparator.comparingInt(Map.Entry::getKey)) .sorted(Comparator.comparingInt(Map.Entry::getKey))
.map(Map.Entry::getValue) .map(Map.Entry::getValue)
.forEach(entitiesInSameRow -> create(ruleIdentifier, .forEach(entitiesInSameRow -> create(ruleIdentifier,
name, entitiesInSameRow.stream().sorted(EntityComparators.first()).map(Entity::getValue).collect(Collectors.joining(", ")), name,
entitiesInSameRow.stream().sorted(EntityComparators.first()).map(Entity::getValue).collect(Collectors.joining(", ")),
valueDescription, valueDescription,
entitiesInSameRow)); entitiesInSameRow));
}); });