Fix bug breaking pagination in global users search
This commit is contained in:
parent
9e18c666ad
commit
99a0c8b08b
|
@ -276,7 +276,7 @@ export const paginatedUsers = async ({
|
||||||
const response = await db.allDocs(getGlobalUserParams(null, opts))
|
const response = await db.allDocs(getGlobalUserParams(null, opts))
|
||||||
userList = response.rows.map((row: any) => row.doc)
|
userList = response.rows.map((row: any) => row.doc)
|
||||||
}
|
}
|
||||||
return pagination(userList, pageLimit, {
|
return pagination(userList, limit ?? PAGE_LIMIT, {
|
||||||
paginate: true,
|
paginate: true,
|
||||||
property,
|
property,
|
||||||
getKey,
|
getKey,
|
||||||
|
|
Loading…
Reference in New Issue