diff --git a/issues/src/org/labkey/issue/IssuesController.java b/issues/src/org/labkey/issue/IssuesController.java index 0c018b78ade..3571d564775 100644 --- a/issues/src/org/labkey/issue/IssuesController.java +++ b/issues/src/org/labkey/issue/IssuesController.java @@ -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 -> {