ui - filter by all customers
This commit is contained in:
parent
7a1610327f
commit
856018d5df
@ -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…
Reference in New Issue
Block a user