[web] Lint source code

This commit is contained in:
Alain Nussbaumer
2024-03-26 11:13:10 +01:00
parent feaa14b76a
commit f2c3e8ff50
3 changed files with 23 additions and 37 deletions

View File

@@ -21,10 +21,7 @@
/>
</p>
<p v-if="!item.folder">
<span
class="heading"
v-text="$t('dialog.playlist.tracks')"
/>
<span class="heading" v-text="$t('dialog.playlist.tracks')" />
<span class="title is-6" v-text="item.item_count" />
</p>
</div>

View File

@@ -88,17 +88,16 @@ export default {
},
methods: {
close() {
this.update_dialog_scan_kind = ''
this.$emit('close')
},
update_library() {
if (this.rescan_metadata) {
webapi.library_rescan(this.update_dialog_scan_kind)
} else {
webapi.library_update(this.update_dialog_scan_kind)
}
},
close() {
this.update_dialog_scan_kind = ''
this.$emit('close')
}
}
}