Skip to content

Commit

Permalink
RW: fix extended of value action
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Nov 22, 2023
1 parent ccc4650 commit e2ddbb9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ protected PrismContainerValueWrapper load() {
if (containers.size() == 1) {
for (PrismContainerWrapper container : containers) {
if (AbstractSynchronizationActionType.class.isAssignableFrom(container.getItem().getDefinition().getTypeClass())) {
return (PrismContainerValueWrapper) container.getValues().iterator().next();
PrismContainerValueWrapper value = (PrismContainerValueWrapper) container.getValues().iterator().next();
if (value != null) {
value.setExpanded(true);
}
return value;
}
}
}
Expand Down

0 comments on commit e2ddbb9

Please sign in to comment.