From 235092832167f77a2bad067b7e065ba41f3e8593 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Thu, 2 Jul 2026 10:45:50 +0800 Subject: [PATCH] fix(User Management): The workspace user list has a pagination limit of 1000 entries, making it impossible to select the 1001st user and beyond. #1243 --- .../src/views/system/workspace/AuthorizedWorkspaceDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/system/workspace/AuthorizedWorkspaceDialog.vue b/frontend/src/views/system/workspace/AuthorizedWorkspaceDialog.vue index 6b565d5a..918bbe31 100644 --- a/frontend/src/views/system/workspace/AuthorizedWorkspaceDialog.vue +++ b/frontend/src/views/system/workspace/AuthorizedWorkspaceDialog.vue @@ -187,7 +187,7 @@ const open = async (id: any) => { checkTableList.value = [] checkAll.value = false isIndeterminate.value = false - const systemWorkspaceList = await workspaceOptionUserList({ oid }, 1, 1000) + const systemWorkspaceList = await workspaceOptionUserList({ oid }, 1, 1000000) workspace.value = JSON.parse( JSON.stringify(systemWorkspaceList.items.filter((ele: any) => +ele.id !== 1) as any) )