Fixes autocomplete for Project endpoint.

This commit is contained in:
Diamantis Tziotzios 2019-02-07 17:00:42 +02:00
parent 35b7c8190a
commit ff437132ed
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ public class ProjectListingModel implements DataModel<eu.eudat.data.entities.Pro
this.definition = definition;
}
public short getStatus() {
return status.getValue();
public Short getStatus() {
return status != null ? status.getValue() : null;
}
public void setStatus(Short status) {