[web] Remove empty JavaScript statements

This commit is contained in:
Alain Nussbaumer 2023-06-30 03:51:38 +02:00
parent 1c0ceec2be
commit 3d2392567a
5 changed files with 5 additions and 17 deletions

View File

@ -189,9 +189,7 @@ export default {
this.$store.commit(types.HIDE_SPOTIFY, value) this.$store.commit(types.HIDE_SPOTIFY, value)
} }
} }
}, }
methods: {}
} }
</script> </script>

View File

@ -69,9 +69,7 @@ export default {
return { return {
albums: new GroupByList() albums: new GroupByList()
} }
}, }
methods: {}
} }
</script> </script>

View File

@ -79,9 +79,7 @@ export default {
this.artists_list.group(byName('name_sort', true)) this.artists_list.group(byName('name_sort', true))
return this.artists_list return this.artists_list
} }
}, }
methods: {}
} }
</script> </script>

View File

@ -64,9 +64,7 @@ export default {
return { return {
composers: new GroupByList() composers: new GroupByList()
} }
}, }
methods: {}
} }
</script> </script>

View File

@ -65,11 +65,7 @@ export default {
return { return {
genres: new GroupByList() genres: new GroupByList()
} }
}, }
computed: {},
methods: {}
} }
</script> </script>