diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index 8cdd35b..a18b6ca 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -588,12 +588,13 @@ class Search { const author = (as.length ? as[0] : '') + (as.length > 1 ? ' и др.' : ''); const a = correctValue(author); - const sc = correctValue(search.series); - const s = (sc ? `(${sc})` : ''); - const t = correctValue(search.title); + let s = correctValue(search.series); + s = (s ? `(${s})` : ''); + let t = correctValue(search.title); + t = (t ? `"${t}"` : ''); result = [s, t].filter(v => v).join(' '); - result = [a, result].filter(v => v).join(' - '); + result = [a, result].filter(v => v).join(' '); } this.$root.setAppTitle(result);