Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update Team Member Role #3224

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions apps/web/lib/settings/member-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,20 @@ export const MemberTable = ({ members }: { members: OT_Member[] }) => {

if (isPromotingToManager) {
// Add new manager
const updatedMemberIds = [...new Set([
...(activeTeamRef.current?.members || []).map((member: OT_Member) => member.employee.id),
employeeId
])];
const updatedManagerIds = [...new Set([...currentManagers, employeeId])];

return updateOrganizationTeam(activeTeamRef.current, {
...activeTeamRef.current,
memberIds: updatedMemberIds
managerIds: updatedManagerIds
evereq marked this conversation as resolved.
Show resolved Hide resolved
});
} else {
// Remove manager
const updatedMemberIds = [...new Set([...currentManagers, employeeId])];
const updatedManagerIds = currentManagers.filter(id => id !== employeeId);

return updateOrganizationTeam(activeTeamRef.current, {
...activeTeamRef.current,
managerIds: updatedManagerIds,
});
Cedric921 marked this conversation as resolved.
Show resolved Hide resolved
const updatedManagerIds = currentManagers.filter(id => id !== employeeId);

return updateOrganizationTeam(activeTeamRef.current, {
Expand Down
Loading