Fixes autocomplete for Project endpoint.
This commit is contained in:
parent
35b7c8190a
commit
ff437132ed
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue