Skip to content

Commit 48ab5ce

Browse files
authored
Quantity support for volume and mass units and conversion between them (#565)
- update method signature for DataColumn.getStringValue()
1 parent 241c9f8 commit 48ab5ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panoramapublic/src/org/labkey/panoramapublic/query/ExperimentAnnotationsTableInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ public AutoCompleteColumn(ColumnInfo col, ActionURL autocompletionUrl, boolean p
708708
public void renderInputHtml(RenderContext ctx, HtmlWriter out, Object value)
709709
{
710710
String name = getFormFieldName(ctx);
711-
String valueString = getStringValue(value, isDisabledInput(ctx));
711+
String valueString = getStringValue(value, getBoundColumn().getDisplayUnit(), isDisabledInput(ctx));
712712
if (valueString == null)
713713
{
714714
valueString = "";

0 commit comments

Comments
 (0)