Skip to content

Commit

Permalink
Merge branch 'upstream/develop' into dev/develop_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lhzzforever committed Mar 22, 2024
2 parents fe29a3d + 0078303 commit 66a96d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saas/backend/apps/role/views/group_member.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_queryset(self):
RoleGroupMember.objects.filter(role_id=self.request.role.id, group_id__in=group_ids)
.values("subject_type", "subject_id")
.distinct()
.order_by("subject_type", "subject_id")
.order_by("-subject_type", "subject_id")
)

slz = RoleGroupMemberSearchSLZ(data=self.request.data)
Expand Down

0 comments on commit 66a96d6

Please sign in to comment.