WIP: Try vue #244

Closed
romanov73 wants to merge 49 commits from try-vue into dev
Showing only changes of commit 08253fc12a - Show all commits

View File

@ -64,7 +64,7 @@ public abstract class ActivityService<L extends ActivityListDto, T extends Abstr
public D update(D entityDto) {
T oldEntity = activityRepository.getById(entityDto.getId());
//to init lazy collection
oldEntity.getActivityMembers();
oldEntity.getActivityMembers().size();
activityRepository.detach(oldEntity);
T newEntity;
try {