sort tracks by tracknumber in album page

This commit is contained in:
geoffrey45
2022-06-26 19:28:02 +03:00
parent 22ff52e86e
commit 4b522fd317
2 changed files with 13 additions and 4 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ const album = useAStore();
onBeforeRouteUpdate(async (to) => {
await album.fetchTracksAndArtists(to.params.hash.toString());
album.fetchBio(to.params.album.toString(), to.params.artist.toString());
album.fetchBio(to.params.hash.toString());
});
</script>