[web] Lint source code

This commit is contained in:
Alain Nussbaumer 2024-04-23 20:16:11 +02:00
parent 4c70105b5e
commit 195135b1b6
2 changed files with 6 additions and 7 deletions

View File

@ -40,7 +40,6 @@ export default [
'prefer-destructuring': 'off',
'prefer-named-capture-group': 'off',
'sort-keys': 'off',
'sort-vars': 'off',
'vue/html-self-closing': 'off',
'vue/max-attributes-per-line': 'off',
'vue/prop-name-casing': 'off',

View File

@ -190,12 +190,12 @@ export default {
this.$store.dispatch('add_recent_search', this.search_query)
},
search_items(type) {
const music = type !== 'audiobook' && type !== 'podcast',
kind = music ? 'music' : type,
parameters = {
type: music ? type : 'album',
limit: this.search_limit
}
const music = type !== 'audiobook' && type !== 'podcast'
const kind = music ? 'music' : type
const parameters = {
type: music ? type : 'album',
limit: this.search_limit
}
if (this.search_query.startsWith('query:')) {
parameters.expression = `(${this.search_query.replace(/^query:/u, '').trim()}) and media_kind is ${kind}`
} else if (music) {