diff --git a/src/App.vue b/src/App.vue
index beb8ff8..cdbbc13 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -68,7 +68,7 @@ import Torrents from './components/Torrents.vue';
import AppFooter from './components/Footer.vue';
import LogsDialog from './components/dialogs/LogsDialog.vue';
import RssDialog from './components/dialogs/RssDialog.vue';
-import SearchDialog from './components/dialogs/SearchDialog.vue';
+import SearchDialog from './components/dialogs/searchDialog/SearchDialog.vue';
import DrawerFooter from './components/drawer/DrawerFooter.vue';
import api from './Api';
diff --git a/src/components/dialogs/SearchDialog.vue b/src/components/dialogs/SearchDialog.vue
deleted file mode 100644
index 0c4ed19..0000000
--- a/src/components/dialogs/SearchDialog.vue
+++ /dev/null
@@ -1,370 +0,0 @@
-
-
-
-
-
- mdi-card-search-outline
-
-
-
- mdi-close
-
-
-
-
-
-
-
-
-
-
- {{ loading ? $t("stop") : $t("search") }}
-
-
-
-
- {{ $t("plugin", 2) }}
-
-
-
-
-
- {{ $t("plugin", 1) }} {{ $t("usage") }}
-
-
- {{ $t("all") }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.fileSize | formatSize }}
-
-
- mdi-download
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/dialogs/searchDialog/SearchDialog.vue b/src/components/dialogs/searchDialog/SearchDialog.vue
new file mode 100644
index 0000000..f3a212c
--- /dev/null
+++ b/src/components/dialogs/searchDialog/SearchDialog.vue
@@ -0,0 +1,192 @@
+
+
+
+
+
+ mdi-card-search-outline
+
+
+
+ mdi-close
+
+
+
+
+
+
+
+
+
+
+ {{ item.fileSize | formatSize }}
+
+
+ mdi-download
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/dialogs/searchDialog/SearchDialogForm.vue b/src/components/dialogs/searchDialog/SearchDialogForm.vue
new file mode 100644
index 0000000..0c9e599
--- /dev/null
+++ b/src/components/dialogs/searchDialog/SearchDialogForm.vue
@@ -0,0 +1,225 @@
+
+
+
+
+
+
+
+
+ {{ loading ? $t("stop") : $t("search") }}
+
+
+
+
+ {{ $t("plugin", 2) }}
+
+
+
+
+
+ {{ $t("plugin", 1) }} {{ $t("usage") }}
+
+
+ {{ $t("all") }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/vue.config.js b/vue.config.js
index 6fdd96b..7c2bfc2 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -6,7 +6,7 @@ module.exports = {
port: 8000,
proxy: {
'/api': {
- target: 'http://qb.test:8080',
+ target: 'https://server.bbogdanov.dev/torrent/',
},
},
},