mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
UI Fixes and Improvements (02/14/2025) p1 (#8546)
* fix(user_dashboard.tsx): add bounding height to keys table ui prevents table from exceeding page height * fix(create_key_button.tsx): do not require team to be selected when user creating keys - allow personal key creation * fix(team_info.tsx): allow proxy admin to edit/delete team members even when not specifically team admins
This commit is contained in:
parent
e1c0025a55
commit
ce2c618aad
5 changed files with 16 additions and 183 deletions
|
@ -2545,8 +2545,8 @@ export const teamMemberDeleteCall = async (
|
|||
},
|
||||
body: JSON.stringify({
|
||||
team_id: teamId,
|
||||
...(formValues.user_email && { user_email: formValues.user_email }),
|
||||
...(formValues.user_id && { user_id: formValues.user_id })
|
||||
...(formValues.user_email !== undefined && { user_email: formValues.user_email }),
|
||||
...(formValues.user_id !== undefined && { user_id: formValues.user_id })
|
||||
}),
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue