diff --git a/README.md b/README.md
index cb9f942..ff675ed 100644
--- a/README.md
+++ b/README.md
@@ -167,6 +167,25 @@ https://github.com/vladlenas
Synology NAS packages repo source: https://grigi.lt
+### Development
+
+#### Go server
+
+To run the Go server locally, just run
+
+```bash
+cd server
+go run ./cmd
+```
+
+#### Web development
+
+To run the web server locally, just run
+
+```bash
+yarn start
+```
+
### Build
#### Server
@@ -262,7 +281,7 @@ local:127.0.0.1
- [FaintGhost](https://github.com/FaintGhost) Zhang Yaowei for Simplified Chinese web translation
- [Anton111111](https://github.com/Anton111111) Anton Potekhin for sleep on Windows fixes
- [lieranderl](https://github.com/lieranderl) Evgeni for adding SSL support code
-- [cocool97](https://github.com/cocool97) for openapi API documentation
+- [cocool97](https://github.com/cocool97) for openapi API documentation and torrent categories
- [shadeov](https://github.com/shadeov) for README improvements
- [butaford](https://github.com/butaford) Pavel for make docker file and scripts
- [filimonic](https://github.com/filimonic) Alexey D. Filimonov
diff --git a/web/src/components/Add/RightSideComponent.jsx b/web/src/components/Add/RightSideComponent.jsx
index d84f1bd..5fbd66e 100644
--- a/web/src/components/Add/RightSideComponent.jsx
+++ b/web/src/components/Add/RightSideComponent.jsx
@@ -11,7 +11,7 @@ import {
TextField,
useTheme,
} from '@material-ui/core'
-import { HighlightOff as HighlightOffIcon } from '@material-ui/icons'
+import { HighlightOff as HighlightOffIcon, Clear } from '@material-ui/icons'
import { TORRENT_CATEGORIES } from 'components/categories'
import {
@@ -148,7 +148,21 @@ export default function RightSideComponent({
onChange={handleCategoryChange}
variant='outlined'
fullWidth
- defaultValue='other'
+ defaultValue=''
+ IconComponent={
+ category.length > 1
+ ? () => (
+ {
+ setCategory("");
+ }}
+ >
+
+
+ )
+ : undefined
+ }
>
{TORRENT_CATEGORIES.map(category => (