mirror of
https://github.com/graphql-hive/console
synced 2026-05-23 17:18:23 +00:00
Show more info in Manage view (#672)
This commit is contained in:
parent
44f47ec8e0
commit
2dd0f98d57
1 changed files with 6 additions and 1 deletions
|
|
@ -450,7 +450,12 @@ export const AdminStats: React.FC<{
|
|||
return (query.data?.admin?.stats.organizations ?? [])
|
||||
.filter(node => filterStats(node, filters))
|
||||
.map(node => ({
|
||||
name: `${node.organization.name} (id: ${node.organization.cleanId}, owner: ${node.organization.owner.user.email})`,
|
||||
name: [
|
||||
`<strong style="padding-bottom: 5px;">${node.organization.name}</strong>`,
|
||||
`id: ${node.organization.id}`,
|
||||
`cleanId: ${node.organization.cleanId}`,
|
||||
`owner: ${node.organization.owner.user.email}`,
|
||||
].join('<br />'),
|
||||
members: (node.organization.members.nodes || []).map(v => v.user.email).join(', '),
|
||||
type: node.organization.type,
|
||||
users: node.users,
|
||||
|
|
|
|||
Loading…
Reference in a new issue