Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
group.total_member_count
group.members.length
1 parent b06f943 commit 4a65874Copy full SHA for 4a65874
site/src/pages/UserSettingsPage/AccountPage/AccountUserGroups.tsx
@@ -57,8 +57,8 @@ export const AccountUserGroups: FC<AccountGroupsProps> = ({
57
header={group.display_name || group.name}
58
subtitle={
59
<>
60
- {group.members.length} member
61
- {group.members.length !== 1 && "s"}
+ {group.total_member_count} member
+ {group.total_member_count !== 1 && "s"}
62
</>
63
}
64
/>
0 commit comments