Skip to content

Commit

Permalink
Improve WebUI users sort
Browse files Browse the repository at this point in the history
  • Loading branch information
itaigilo committed Dec 13, 2024
1 parent 90e491f commit ed06a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/pages/auth/groups/group/members.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const GroupMemberList = ({ groupId, after, onPaginate }) => {
Remove
</ConfirmationButton>
}]}
results={results}
results={results.sort((a,b) => resolveDisplayName(a).localeCompare(resolveDisplayName(b)))}
emptyState={'No users found'}
/>

Expand Down

0 comments on commit ed06a62

Please sign in to comment.