-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
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>
Metadata
Metadata
Assignees
Labels
No labels