diff --git a/packages/frontend/src/views/admin/AdminUsers.vue b/packages/frontend/src/views/admin/AdminUsers.vue index 555f2c2ef..95d412901 100644 --- a/packages/frontend/src/views/admin/AdminUsers.vue +++ b/packages/frontend/src/views/admin/AdminUsers.vue @@ -3,7 +3,7 @@ Server Users Admin - (found {{ users.totalCount }} users) + (showing {{ users.items.length }} of {{ users.totalCount }} users) - - + + @@ -177,7 +172,7 @@ export default { async updateUserRole(userId, newRole) { await this.$apollo.mutate({ mutation: gql` - mutation($userId: String!, $newRole: String!) { + mutation ($userId: String!, $newRole: String!) { userRoleChange(userRoleInput: { id: $userId, role: $newRole }) } `,