diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index 94dba00..f308038 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -110,6 +110,9 @@ +
+ +{{ extendedParamsMessage }} +
@@ -468,6 +471,14 @@ class Search { return result; } + get extendedParamsMessage() { + const s = this.search; + const result = []; + result.push(s.genre ? 'Жанр' : ''); + + return result.join(', '); + } + inputBgColor(inp) { if (inp === this.selectedList) return 'white';