Skip to content

Commit

Permalink
Fix stage item modal: team_id should be string (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
evroon committed Dec 6, 2023
1 parent 35ff575 commit 908d05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/modals/create_stage_item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export function CreateStageItemModal({
const team = teamsMap[option.team_id];
if (team == null) return null;
return {
value: option.team_id,
value: `${option.team_id}`,
label: team.name,
};
}
Expand Down

1 comment on commit 908d05e

@vercel
Copy link

@vercel vercel bot commented on 908d05e Dec 6, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.