Skip to content

Commit

Permalink
fix for virtual containers in vertical form panels
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Aug 14, 2023
1 parent e723c73 commit 85d5efa
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ protected List<PrismContainerWrapper<? extends Containerable>> load() {
if (config == null) {
containers.removeIf(c -> c.isVirtual() || !isVisibleSubContainer(c));
} else {
containers.removeIf(c -> (c.isVirtual() && c.getIdentifier() == null) || !isVisibleSubContainer(c));
containers.removeIf(c -> (c.isVirtual() && c.getIdentifier() == null)
|| (!c.isVirtual() && !isVisibleSubContainer(c)));
}

return containers;
Expand Down

0 comments on commit 85d5efa

Please sign in to comment.