diff --git a/ui/litellm-dashboard/src/components/view_key_table.tsx b/ui/litellm-dashboard/src/components/view_key_table.tsx index 710d1c4027..c0a9bc877b 100644 --- a/ui/litellm-dashboard/src/components/view_key_table.tsx +++ b/ui/litellm-dashboard/src/components/view_key_table.tsx @@ -86,13 +86,13 @@ const ViewKeyTable: React.FC = ({ Key Alias Secret Key Spend (USD) - Budget (USD) - Spend Report - Team - Metadata + {/* Budget (USD) */} + {/* Spend Report */} + {/* Team */} + {/* Metadata */} Models TPM / RPM Limits - Expires + {/* Expires */} @@ -125,14 +125,14 @@ const ViewKeyTable: React.FC = ({ })()} - + {/* {item.max_budget != null ? ( {item.max_budget} ) : ( Unlimited )} - - + */} + {/* = ({ keyBudget={item.max_budget} keyName={item.key_name} /> - - + */} + {/* {item.team_alias && item.team_alias != "None" ? item.team_alias : item.team_id} - - + */} + {/* {JSON.stringify(item.metadata).slice(0, 400)} - + */} - + {Array.isArray(item.models) ? (
{item.models.map((model: string, index: number) => ( + {model.length > 30 ? `${model.slice(0, 30)}...` : model} + ))}
@@ -167,13 +169,13 @@ const ViewKeyTable: React.FC = ({ {item.rpm_limit ? item.rpm_limit : "Unlimited"}
- + {/* {item.expires != null ? ( {item.expires} ) : ( Never )} - + */} handleDelete(item.token)}