From 3f1271806309394f5e62a1b22f646966ffd7f49f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= Date: Thu, 14 Oct 2021 16:07:27 +0200 Subject: [PATCH] fix((frontend) user admin): fix moon phase avatars fix positioning of nested circular avatars --- packages/frontend/src/views/admin/AdminUsers.vue | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) 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 }) } `,