Skip to content

Commit 4b94f69

Browse files
authored
Issue 52592: resolve correct unassigned samples folder column (#6598)
1 parent 4304b44 commit 4b94f69

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

api/src/org/labkey/api/exp/query/ExpMaterialTable.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.labkey.api.exp.query;
1818

1919
import org.labkey.api.data.UpdateableTableInfo;
20+
import org.labkey.api.query.FieldKey;
2021

2122
public interface ExpMaterialTable extends ExpTable<ExpMaterialTable.Column>, UpdateableTableInfo
2223
{
@@ -60,7 +61,12 @@ enum Column
6061
SourceProtocolLSID,
6162
StoredAmount,
6263
Units,
63-
IsPlated,
64+
IsPlated;
65+
66+
public FieldKey fieldKey()
67+
{
68+
return FieldKey.fromParts(name());
69+
}
6470
}
6571

6672
default void setSupportTableRules(boolean supportTableRules)

0 commit comments

Comments
 (0)