Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion issues/src/org/labkey/issue/IssuesController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1792,7 +1792,9 @@ public Object execute(UserGroupForm form, BindException errors)
// ensure group is in scope for the container
boolean inScope = group != null && getSelectableAssignmentGroups(getContainer(), getUser())
.stream().anyMatch(g -> g.getUserId() == group.getUserId());
if (inScope)
// if either the specified group is null or we can't resolve the group we default to all
// users with update in the current container.
if (inScope || group == null)
{
return IssueManager.getUsersForGroup(getContainer(), group)
.map(user -> {
Expand Down