Skip to content

Commit

Permalink
fix: display more than default 30 workspaces as superadmin
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed May 9, 2022
1 parent 8596ac5 commit 55b5695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/routes/user/workspaces@user.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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' };
});
}
Expand Down

0 comments on commit 55b5695

Please sign in to comment.