mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
ui - filter by all customers
This commit is contained in:
parent
7a1610327f
commit
856018d5df
1 changed files with 11 additions and 1 deletions
|
|
@ -1045,7 +1045,17 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
<Text className="mt-1">
|
||||
Select Customer Name
|
||||
</Text>
|
||||
<Select>
|
||||
|
||||
<Select defaultValue="all-customers">
|
||||
<SelectItem
|
||||
key="all-customers"
|
||||
value="all-customers"
|
||||
onClick={() => {
|
||||
setSelectedAPIKey(null);
|
||||
}}
|
||||
>
|
||||
All Customers
|
||||
</SelectItem>
|
||||
{
|
||||
allEndUsers?.map((user: any, index: number) => {
|
||||
return (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue