feat(org): expose pageSize prop for MembersListCard component

Signed-off-by: djamaile <rdjamaile@gmail.com>
This commit is contained in:
djamaile
2022-01-14 19:05:43 +01:00
parent 2908a41b9b
commit f006fe2529
3 changed files with 18 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
---
'@backstage/plugin-org': patch
---
For the component `EntityMembersListCard` you can now specify the pageSize. For example:
```tsx
<Grid item xs={12}>
<EntityMembersListCard pageSize={100} />
</Grid>
```
If left empty it will by default use 50.