fix: display more than default 30 workspaces as superadmin
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
}
|
||||
|
||||
async function loadWorkspacesAsAdmin() {
|
||||
workspaces = (await WorkspaceService.listWorkspacesAsSuperAdmin({})).map((x) => {
|
||||
workspaces = (await WorkspaceService.listWorkspacesAsSuperAdmin({ perPage: 1000 })).map((x) => {
|
||||
return { ...x, username: 'superadmin' };
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user