Removed top tracks, artist and albums from home tab

This commit is contained in:
RemixDev
2020-05-09 14:25:24 +02:00
parent 303183fc3c
commit 3c395e95a4
4 changed files with 3 additions and 80 deletions

View File

@@ -41366,9 +41366,6 @@ const LinkAnalyzerTab = new Vue({
const HomeTab = new Vue({
data() {
return {
tracks: [],
albums: [],
artists: [],
playlists: []
}
},
@@ -41376,11 +41373,6 @@ const HomeTab = new Vue({
artistView,
albumView,
playlistView,
playPausePreview: TrackPreview.playPausePreview,
previewMouseEnter: TrackPreview.previewMouseEnter,
previewMouseLeave: TrackPreview.previewMouseLeave,
numberWithDots: Utils.numberWithDots,
convertDuration: Utils.convertDuration,
addToQueue(e) {
e.stopPropagation();
Downloads.sendAddToQueue(e.currentTarget.dataset.link);
@@ -41389,9 +41381,6 @@ const HomeTab = new Vue({
QualityModal$1.open(e.currentTarget.dataset.link);
},
initHome(data) {
this.tracks = data.tracks.data;
this.albums = data.albums.data;
this.artists = data.artists.data;
this.playlists = data.playlists.data;
}
},

File diff suppressed because one or more lines are too long