Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const MemberSelectorDialog = ({
);
}
}
}, [open]);
}, [open, selectedMembers]);
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The initializeChecked function called in this useEffect uses the value of selectedMembers.


// Change filter options when filter type is changed
useEffect(() => {
Expand Down
13 changes: 13 additions & 0 deletions web-ui/src/components/reviews/TeamReviews.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.team-reviews {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This styles the rows of members and their reviewers.

& .chip-row {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
margin-left: 2rem;
}

& .name-title {
min-width: 10rem;
}
}
Loading