fix: admin dashboard team member count bug (#5143)
This commit is contained in:
parent
2bd3f36bfa
commit
936b0fff46
2 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ query TeamList($cursor: ID, $take: Int) {
|
|||
allTeams(cursor: $cursor, take: $take) {
|
||||
id
|
||||
name
|
||||
members {
|
||||
teamMembers {
|
||||
membershipID
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
</td>
|
||||
|
||||
<td class="py-4 px-8">
|
||||
{{ team.members?.length }}
|
||||
{{ team.teamMembers?.length }}
|
||||
</td>
|
||||
|
||||
<td @click.stop class="flex justify-end mr-10">
|
||||
|
|
|
|||
Loading…
Reference in a new issue