Skip to content

Commit

Permalink
Reports / Fix extract user groups for non-admin users (#7742)
Browse files Browse the repository at this point in the history
  • Loading branch information
josegar74 authored Feb 13, 2024
1 parent f92baa9 commit 8447d5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
var groups = _.map(response.data, "group");

// Get unique groups
$scope.groups = _.uniq(groups, function (e) {
$scope.groups = _.uniqBy(groups, function (e) {
return e.id;
});
},
Expand Down

0 comments on commit 8447d5d

Please sign in to comment.