Skip to content

Commit

Permalink
Fixed #574 Show Choices (MultiSelectPicklist)
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Jan 9, 2022
1 parent b44678e commit cb6e722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FetchXmlBuilder/AppCode/AttributeItem.cs
Expand Up @@ -52,7 +52,7 @@ public static void AddAttributeToComboBox(ComboBox cmb, AttributeMetadata meta,
add = false;
}
}
if (!allowvirtual && meta.AttributeType == AttributeTypeCode.Virtual)
if (!allowvirtual && meta.AttributeType == AttributeTypeCode.Virtual && !(meta is MultiSelectPicklistAttributeMetadata))
{
add = false;
}
Expand Down

0 comments on commit cb6e722

Please sign in to comment.