Merge pull request #8943 from djamaile/master

feat(org): expose pageSize prop for MembersListCard component
This commit is contained in:
Fredrik Adelöw
2022-01-17 09:39:58 +01:00
committed by GitHub
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.