Fixes bug on Project editor.

This commit is contained in:
gkolokythas 2019-05-21 17:20:11 +03:00
parent 349dfd821e
commit e49d7afc54
1 changed files with 2 additions and 0 deletions

View File

@ -294,8 +294,10 @@ public class Project implements DataEntity<Project, UUID> {
this.created = entity.getCreated();
this.definition = entity.getDefinition();
this.dmps = entity.getDmps();
this.startdate = entity.getStartdate();
this.enddate = entity.getEnddate();
this.modified = new Date();
this.uri = entity.getUri();
if (entity.getContent() != null) this.content = entity.getContent();
}