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;
|
this.definition = definition;
|
||||||
}
|
}
|
||||||
|
|
||||||
public short getStatus() {
|
public Short getStatus() {
|
||||||
return status.getValue();
|
return status != null ? status.getValue() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setStatus(Short status) {
|
public void setStatus(Short status) {
|
||||||
|
|
Loading…
Reference in New Issue