Fixed issue when creating DMP from the creation Wizard
This commit is contained in:
parent
d67e68d0d9
commit
411de18e9f
|
@ -164,7 +164,9 @@ public class Project implements DataModel<eu.eudat.data.entities.Project, Projec
|
||||||
this.abbreviation = entity.getAbbreviation();
|
this.abbreviation = entity.getAbbreviation();
|
||||||
this.reference = entity.getReference();
|
this.reference = entity.getReference();
|
||||||
this.uri = entity.getUri();
|
this.uri = entity.getUri();
|
||||||
this.type = entity.getType();
|
if (entity.getType() != null) {
|
||||||
|
this.type = entity.getType();
|
||||||
|
}
|
||||||
this.definition = entity.getDefinition();
|
this.definition = entity.getDefinition();
|
||||||
this.startDate = entity.getStartdate();
|
this.startDate = entity.getStartdate();
|
||||||
this.endDate = entity.getEnddate();
|
this.endDate = entity.getEnddate();
|
||||||
|
|
Loading…
Reference in New Issue