[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-destructuring': 'off',
'prefer-named-capture-group': 'off', 'prefer-named-capture-group': 'off',
'sort-keys': 'off', 'sort-keys': 'off',
'sort-vars': 'off',
'vue/html-self-closing': 'off', 'vue/html-self-closing': 'off',
'vue/max-attributes-per-line': 'off', 'vue/max-attributes-per-line': 'off',
'vue/prop-name-casing': 'off', 'vue/prop-name-casing': 'off',

View File

@ -190,9 +190,9 @@ export default {
this.$store.dispatch('add_recent_search', this.search_query) this.$store.dispatch('add_recent_search', this.search_query)
}, },
search_items(type) { search_items(type) {
const music = type !== 'audiobook' && type !== 'podcast', const music = type !== 'audiobook' && type !== 'podcast'
kind = music ? 'music' : type, const kind = music ? 'music' : type
parameters = { const parameters = {
type: music ? type : 'album', type: music ? type : 'album',
limit: this.search_limit limit: this.search_limit
} }