Book Pauk 2 жил өмнө
parent
commit
4548b5c4d9

+ 1 - 1
client/components/Api/Api.vue

@@ -113,7 +113,7 @@ class Api {
         }
 
         try {
-            const result = await this.$root.stdDialog.password(`Введите пароль для доступа:`, ' ', {
+            const result = await this.$root.stdDialog.password('Введите пароль:', 'Доступ ограничен', {
                 inputValidator: (str) => (str ? true : 'Пароль не должен быть пустым'),
                 userName: 'access',
                 noEscDismiss: true,

+ 0 - 3
client/components/Search/Search.vue

@@ -544,14 +544,11 @@ class Search {
 
     selectAuthor(author) {
         this.search.author = `=${author}`;
-        this.search.series = '';
-        this.search.title = '';
         this.scrollToTop();
     }
 
     selectSeries(series) {
         this.search.series = `=${series}`;
-        this.search.title = '';
     }
 
     async download(book, copy = false) {