Skip to content

Commit 2350928

Browse files
committed
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
1 parent 86c4f00 commit 2350928

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/views/system/workspace/AuthorizedWorkspaceDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ const open = async (id: any) => {
187187
checkTableList.value = []
188188
checkAll.value = false
189189
isIndeterminate.value = false
190-
const systemWorkspaceList = await workspaceOptionUserList({ oid }, 1, 1000)
190+
const systemWorkspaceList = await workspaceOptionUserList({ oid }, 1, 1000000)
191191
workspace.value = JSON.parse(
192192
JSON.stringify(systemWorkspaceList.items.filter((ele: any) => +ele.id !== 1) as any)
193193
)

0 commit comments

Comments
 (0)