Skip to content

Commit 2d53a2c

Browse files
authored
Merge pull request #186 from ctfguide-tech/dev
Dev
2 parents 2d44bd4 + 3a76913 commit 2d53a2c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/components/practice/community.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function CategorySelect({ category, setCategory, isDifficulty }) {
4545
{ name: 'Programming', value: 'programming' },
4646
{ name: 'Pwn', value: 'pwn' },
4747
{ name: 'Steganography', value: 'steganography' },
48+
{ name: 'Other', value: 'other' },
4849
{ name: 'Basic', value: 'basic' },
4950
];
5051

src/pages/create/new.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ function getCategoryIcon(category) {
3939
return 'fas fa-binoculars';
4040
case 'cryptography':
4141
return 'fas fa-lock';
42+
case 'other':
43+
return 'fas fa-question';
4244
case 'web':
4345
return 'fas fa-globe';
4446
case 'reverse engineering':

0 commit comments

Comments
 (0)