Skip to content

Commit

Permalink
fix for assigning of members on governance card panel
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Jan 24, 2023
1 parent ff98dbe commit c975f68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5565,6 +5565,10 @@ public static String translateMessage(LocalizableMessage msg) {
}

public static CompiledObjectCollectionView getCompiledObjectCollectionView(GuiObjectListViewType listViewType, ContainerPanelConfigurationType config, PageBase pageBase) {
if (listViewType == null) {
return null;
}

Task task = pageBase.createSimpleTask("Compile collection");
OperationResult result = task.getResult();
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ public static List<QName> getSupportedObjectTypes(CollectionPanelType collection
case SERVICE_MEMBER_MEMBER:
case SERVICE_MEMBER_GOVERNANCE:
case ORG_MEMBER_GOVERNANCE:
case CARDS_GOVERNANCE:
case ARCHETYPE_MEMBER_GOVERNANCE:
return WebComponentUtil.createFocusTypeList();
case ORG_MEMBER_MEMBER:
Expand Down

0 comments on commit c975f68

Please sign in to comment.