From 585691aa0fae104aa1e5f8fcb7c38be7898be837 Mon Sep 17 00:00:00 2001 From: chen310 <33364396+chen310@users.noreply.github.com> Date: Mon, 17 Jan 2022 20:38:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BA=91=E7=9B=98=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E6=AD=8C=E6=9B=B2=E6=95=B0=E5=A2=9E=E5=8A=A0=E8=87=B31000=20(#?= =?UTF-8?q?1242)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FIXME: 超过 1000 的部分仍无法显示 Fix #940 Fix #1024 Fix #1240 --- src/store/actions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/store/actions.js b/src/store/actions.js index e0218cc..83c0666 100644 --- a/src/store/actions.js +++ b/src/store/actions.js @@ -156,7 +156,8 @@ export default { }, fetchCloudDisk: ({ commit }) => { if (!isAccountLoggedIn()) return; - return cloudDisk().then(result => { + // FIXME: #1242 + return cloudDisk({ limit: 1000 }).then(result => { if (result.data) { commit('updateLikedXXX', { name: 'cloudDisk',