diff --git a/elispotassay/src/org/labkey/elispot/ElispotAssayProvider.java b/elispotassay/src/org/labkey/elispot/ElispotAssayProvider.java index 454662d58..d831885d6 100644 --- a/elispotassay/src/org/labkey/elispot/ElispotAssayProvider.java +++ b/elispotassay/src/org/labkey/elispot/ElispotAssayProvider.java @@ -21,6 +21,7 @@ import org.labkey.api.assay.plate.AbstractPlateBasedAssayProvider; import org.labkey.api.data.Container; import org.labkey.api.data.PropertyStorageSpec; +import org.labkey.api.exp.Lsid; import org.labkey.api.exp.ObjectProperty; import org.labkey.api.exp.PropertyType; import org.labkey.api.exp.api.ExpData; @@ -269,7 +270,7 @@ protected Pair> createAntigenWellGroupDomain DomainKind domainKind = PropertyService.get().getDomainKindByName(ElispotAntigenDomainKind.KINDNAME); for (PropertyStorageSpec propSpec : domainKind.getBaseProperties(null)) { - DomainProperty prop = antigenWellGroupDomain.addProperty(propSpec); + DomainProperty prop = antigenWellGroupDomain.addProperty(propSpec, propSpec.getName()); prop.setShownInInsertView(false); prop.setShownInUpdateView(false); prop.setShownInDetailsView(false);