mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-28 04:04:31 +00:00
fix selectedCustomer
This commit is contained in:
parent
61ce9cccac
commit
acc74bfbe1
1 changed files with 6 additions and 4 deletions
|
@ -632,7 +632,8 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
_initial_model_group,
|
||||
dateValue.from?.toISOString(),
|
||||
dateValue.to?.toISOString(),
|
||||
selectedAPIKey?.token
|
||||
selectedAPIKey?.token,
|
||||
selectedCustomer
|
||||
);
|
||||
|
||||
console.log("Model metrics response:", modelMetricsResponse);
|
||||
|
@ -661,7 +662,8 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
_initial_model_group,
|
||||
dateValue.from?.toISOString(),
|
||||
dateValue.to?.toISOString(),
|
||||
selectedAPIKey?.token
|
||||
selectedAPIKey?.token,
|
||||
selectedCustomer
|
||||
);
|
||||
console.log("Model exceptions response:", modelExceptionsResponse);
|
||||
setModelExceptions(modelExceptionsResponse.data);
|
||||
|
@ -674,7 +676,8 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
_initial_model_group,
|
||||
dateValue.from?.toISOString(),
|
||||
dateValue.to?.toISOString(),
|
||||
selectedAPIKey?.token
|
||||
selectedAPIKey?.token,
|
||||
selectedCustomer
|
||||
);
|
||||
|
||||
const dailyExceptions = await adminGlobalActivityExceptions(
|
||||
|
@ -1977,7 +1980,6 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
</Col>
|
||||
<Col>
|
||||
<Popover
|
||||
|
||||
trigger="click" content={FilterByContent}
|
||||
>
|
||||
<Button
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue