Skip to content

Commit

Permalink
fix(forms) Fix small bug in createForm graphql endpoint (#11216)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscollins3456 authored Aug 20, 2024
1 parent 09acd5b commit be7b343
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public static FormActorAssignment mapFormActorAssignment(
if (input.getGroups() != null) {
UrnArray groupUrns = new UrnArray();
input.getGroups().forEach(group -> groupUrns.add(UrnUtils.getUrn(group)));
result.setUsers(groupUrns);
result.setGroups(groupUrns);
}

return result;
Expand Down

0 comments on commit be7b343

Please sign in to comment.