Small feature request: may you please sort the groups in the users table in column User Groups, when rendering the list of groups for each user?
For example: Developer, Reviewer, Admin --> Admin, Developer, Reviewer
The snippet could something like this
<template #item.user_groups="{ item: user }">
{{ user.groups.slice().sort((a, b) => a.name.localeCompare(b.name)).map(ug => ug.name).join(', ') }}
</template>
Small feature request: may you please sort the groups in the users table in column
User Groups, when rendering the list of groups for each user?For example:
Developer, Reviewer, Admin-->Admin, Developer, ReviewerThe snippet could something like this