diff --git a/src/renderer/views/UserPlaylists/UserPlaylists.js b/src/renderer/views/UserPlaylists/UserPlaylists.js index d90c83d6..ac88c437 100644 --- a/src/renderer/views/UserPlaylists/UserPlaylists.js +++ b/src/renderer/views/UserPlaylists/UserPlaylists.js @@ -28,10 +28,11 @@ export default Vue.extend({ }, activeData: function () { + const data = [].concat(this.favoritesPlaylist.videos).reverse() if (this.favoritesPlaylist.videos.length < this.dataLimit) { - return this.favoritesPlaylist.videos + return data } else { - return this.favoritesPlaylist.videos.slice(0, this.dataLimit) + return data.slice(0, this.dataLimit) } } },