forked from phoenix/litellm-mirror
show users tab on user
This commit is contained in:
parent
e28120a7cc
commit
522f119c83
2 changed files with 5 additions and 7 deletions
|
@ -297,7 +297,7 @@ export const userInfoCall = async (
|
|||
url = `${url}?user_id=${userID}`;
|
||||
}
|
||||
console.log("in userInfoCall viewAll=", viewAll);
|
||||
if (viewAll && page && page_size) {
|
||||
if (viewAll && page_size && (page != null) && (page != undefined)) {
|
||||
url = `${url}?view_all=true&page=${page}&page_size=${page_size}`;
|
||||
}
|
||||
//message.info("Requesting user data");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue