Skip to content

Commit 2030ab1

Browse files
committed
fix allow multi check
1 parent 1e2d8ee commit 2030ab1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/src/org/labkey/api/exp/property/DomainUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1444,7 +1444,7 @@ public static ValidationException validateProperties(@Nullable Domain domain, @N
14441444
ValidationException exception = new ValidationException();
14451445
Map<Integer, String> propertyIdNameMap = getOriginalFieldPropertyIdNameMap(orig);//key: orig property id, value : orig field name
14461446

1447-
boolean allowMultiChoice = domainKind != null ? domainKind.allowMultiChoiceProperties() : updates.isAllowMultiChoiceProperties();
1447+
boolean allowMultiChoice = domainKind != null ? allowMultiChoice(domainKind) : updates.isAllowMultiChoiceProperties();
14481448
for (GWTPropertyDescriptor field : updates.getFields(true))
14491449
{
14501450
String name = field.getName();

0 commit comments

Comments
 (0)