Skip to content

Commit

Permalink
FW-5212 Add fix for join request approval as language admin
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanVH committed Nov 20, 2023
1 parent 64502f4 commit 84278b6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ function DashboardJoinCardPresentation({
<select
id="role-to-assign"
name="role-to-assign"
onChange={(e) => setSelectedRole(e.target.value)}
onChange={(e) =>
setSelectedRole(e.target.value.split(' ').join('_'))
}
className="inline-flex rounded-lg py-1.5 text-sm text-primary border border-primary shadow-sm hover:bg-gray-50"
>
<option value={MEMBER}>Approve as Member</option>
Expand Down

0 comments on commit 84278b6

Please sign in to comment.