Fix MembersList not updating when group changes

Fixes #5108

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-03-25 22:10:45 -06:00
parent d10b7d3642
commit baa39809e5
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-org': patch
---
Fixed MembersList showing members from a previous group when navigating to a new group
@@ -135,7 +135,7 @@ export const MembersListCard = (_props: {
),
);
return groupMembersList;
}, [catalogApi]);
}, [catalogApi, groupEntity]);
if (loading) {
return <Progress />;