Skip to content

Commit f62322a

Browse files
committed
Use PageFlowUtil.joinValuesToStringForExport
1 parent 22eb3e7 commit f62322a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

experiment/src/org/labkey/experiment/api/AliasDisplayColumnFactory.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import org.labkey.api.data.DisplayColumnFactory;
77
import org.labkey.api.data.MultiValuedDisplayColumn;
88
import org.labkey.api.data.RenderContext;
9+
import org.labkey.api.util.PageFlowUtil;
910

1011
import java.util.List;
1112

@@ -24,7 +25,7 @@ public Object getInputValue(RenderContext ctx)
2425
{
2526
Object value = super.getInputValue(ctx);
2627
if (value instanceof List)
27-
return String.join(", ", (List) value);
28+
return PageFlowUtil.joinValuesToStringForExport((List<String>) value);
2829
return "";
2930
}
3031
};

0 commit comments

Comments
 (0)