From 137b6ffa556c9287580c06145eb7809bfba7a5c6 Mon Sep 17 00:00:00 2001 From: Fine Date: Tue, 3 Dec 2024 11:45:40 +0800 Subject: [PATCH] fix --- src/store/modules/async-profiling.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/modules/async-profiling.ts b/src/store/modules/async-profiling.ts index 7821f4c7..a0041f18 100644 --- a/src/store/modules/async-profiling.ts +++ b/src/store/modules/async-profiling.ts @@ -62,6 +62,7 @@ export const asyncProfilingStore = defineStore({ const res: AxiosResponse = await graphql.query("getAsyncTaskList").params({ request: { serviceId: selectorStore.currentService.id, + limit: 10000, }, }); this.loadingTasks = false;