We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f872ba0 commit f43ee2fCopy full SHA for f43ee2f
1 file changed
src/org/labkey/test/components/domain/DomainFormPanel.java
@@ -236,7 +236,10 @@ else if (validator instanceof FieldDefinition.TextChoiceValidator textChoiceVali
236
throw new IllegalArgumentException("TextChoice fields cannot have additional validators.");
237
}
238
fieldRow.setTextChoiceValues(textChoiceValidator.getValues());
239
- fieldRow.setAllowMultipleSelections(fieldDefinition.getType() == FieldDefinition.ColumnType.MultiValueTextChoice);
+ if(fieldDefinition.getType() == FieldDefinition.ColumnType.MultiValueTextChoice)
240
+ {
241
+ fieldRow.setAllowMultipleSelections(true);
242
+ }
243
244
else
245
{
0 commit comments