From d3a075ed56de0dda64e05d59ea3e710d92004985 Mon Sep 17 00:00:00 2001 From: vr10t Date: Wed, 1 Mar 2023 18:01:20 +0000 Subject: [PATCH] remove console statement --- src/components/HistoryPage.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/HistoryPage.vue b/src/components/HistoryPage.vue index 912a109b..24848e18 100644 --- a/src/components/HistoryPage.vue +++ b/src/components/HistoryPage.vue @@ -105,7 +105,6 @@ export default { this.download(JSON.stringify(json), `piped_history_${dateStr}.json`, "application/json"); }, loadMoreVideos() { - console.log("load more videos", this.videosStore.length, this.currentVideoCount); this.currentVideoCount = Math.min(this.currentVideoCount + this.videoStep, this.videosStore.length); if (this.videos.length != this.videosStore.length) this.videos = this.videosStore.slice(0, this.currentVideoCount);