diff --git a/src/renderer/views/Playlist/Playlist.js b/src/renderer/views/Playlist/Playlist.js index 601284fd9a891..768ee8fc5e8ba 100644 --- a/src/renderer/views/Playlist/Playlist.js +++ b/src/renderer/views/Playlist/Playlist.js @@ -7,6 +7,7 @@ import PlaylistInfo from '../../components/playlist-info/playlist-info.vue' import FtListVideoNumbered from '../../components/ft-list-video-numbered/ft-list-video-numbered.vue' import FtFlexBox from '../../components/ft-flex-box/ft-flex-box.vue' import FtButton from '../../components/ft-button/ft-button.vue' +import FtAutoLoadNextPageWrapper from '../../components/ft-auto-load-next-page-wrapper/ft-auto-load-next-page-wrapper.vue' import { getLocalPlaylist, getLocalPlaylistContinuation, @@ -23,7 +24,8 @@ export default defineComponent({ 'playlist-info': PlaylistInfo, 'ft-list-video-numbered': FtListVideoNumbered, 'ft-flex-box': FtFlexBox, - 'ft-button': FtButton + 'ft-button': FtButton, + 'ft-auto-load-next-page-wrapper': FtAutoLoadNextPageWrapper, }, beforeRouteLeave(to, from, next) { if (!this.isLoading && !this.isUserPlaylistRequested && to.path.startsWith('/watch') && to.query.playlistId === this.playlistId) { diff --git a/src/renderer/views/Playlist/Playlist.vue b/src/renderer/views/Playlist/Playlist.vue index 81d022609632b..69fca4917c3ca 100644 --- a/src/renderer/views/Playlist/Playlist.vue +++ b/src/renderer/views/Playlist/Playlist.vue @@ -65,16 +65,19 @@ @remove-from-playlist="removeVideoFromPlaylist(item.videoId, item.playlistItemId)" /> - - - + + + +