From 29306827bacda87570fadc6f04d921f89de8f9fb Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 1 Sep 2025 14:08:48 +0800 Subject: [PATCH] feat: App Store - Installed: Pagination Cache Added (#10212) --- frontend/src/views/app-store/installed/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/views/app-store/installed/index.vue b/frontend/src/views/app-store/installed/index.vue index 62d67109c..b42f8b7ff 100644 --- a/frontend/src/views/app-store/installed/index.vue +++ b/frontend/src/views/app-store/installed/index.vue @@ -528,6 +528,9 @@ const hasLinkButton = (installed: any) => { const search = async () => { searchReq.page = paginationConfig.currentPage; searchReq.pageSize = paginationConfig.pageSize; + + localStorage.setItem('app-installed-page-size', String(searchReq.pageSize)); + const res = await searchAppInstalled(searchReq); data.value = res.data.items; paginationConfig.total = res.data.total;