Skip to content
Merged

Dev #186

Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions src/components/practice/community.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ function CategorySelect({ category, setCategory, isDifficulty }) {
{ name: 'Programming', value: 'programming' },
{ name: 'Pwn', value: 'pwn' },
{ name: 'Steganography', value: 'steganography' },
{ name: 'Other', value: 'other' },
{ name: 'Basic', value: 'basic' },
];

Expand Down
2 changes: 2 additions & 0 deletions src/pages/create/new.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ function getCategoryIcon(category) {
return 'fas fa-binoculars';
case 'cryptography':
return 'fas fa-lock';
case 'other':
return 'fas fa-question';
case 'web':
return 'fas fa-globe';
case 'reverse engineering':
Expand Down