[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)
}
}
},
methods: {}
}
}
</script>

View File

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

View File

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

View File

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

View File

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