Skip to content

Commit ea3a3b9

Browse files
authored
Merge pull request #178 from ctfguide-tech/dev
Bug fix for Writeup Create Draft Modal
2 parents 857c4f0 + 006410a commit ea3a3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/editor/Menu.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ className=" pb-10 pt-4 px-4 shadow sm:px-10 bg-neutral-800" onClick
7070
<select className='bg-neutral-900 text-white border-none text-sm py-1 w-full'>
7171
{
7272
solvedChallenges.map((challenge, index) => (
73-
<option key={index} value={challenge.id} className="text-white">{challenge.challenge.title}</option>
73+
<option key={index} value={challenge.challenge.id} className="text-white">{challenge.challenge.title}</option>
7474
))
7575
}
7676
</select>

0 commit comments

Comments
 (0)