diff --git a/ui/litellm-dashboard/src/components/view_key_table.tsx b/ui/litellm-dashboard/src/components/view_key_table.tsx index 669547396f..8fdbd88fdd 100644 --- a/ui/litellm-dashboard/src/components/view_key_table.tsx +++ b/ui/litellm-dashboard/src/components/view_key_table.tsx @@ -425,7 +425,7 @@ const ViewKeyTable: React.FC = ({ return (
- +
Key Alias diff --git a/ui/litellm-dashboard/src/components/view_users.tsx b/ui/litellm-dashboard/src/components/view_users.tsx index 192ff490a1..b3960965c5 100644 --- a/ui/litellm-dashboard/src/components/view_users.tsx +++ b/ui/litellm-dashboard/src/components/view_users.tsx @@ -153,9 +153,13 @@ const ViewUserDashboard: React.FC = ({ return (
- + - + +
+ Key Owners: Users on LiteLLM that created API Keys. Automatically tracked by LiteLLM + End Users: End Users of your LLM API calls. Tracked When a `user` param is passed in your LLM calls +
Key Owners @@ -163,6 +167,7 @@ const ViewUserDashboard: React.FC = ({ +
@@ -220,8 +225,8 @@ const ViewUserDashboard: React.FC = ({ {keys?.map((key: any, index: number) => { if ( key && - key["key_name"] !== null && - key["key_name"].length > 0 + key["key_alias"] !== null && + key["key_alias"].length > 0 ) { return ( = ({ value={String(index)} onClick={() => onKeyClick(key["token"])} > - {key["key_name"]} + {key["key_alias"]} ); } @@ -237,7 +242,7 @@ const ViewUserDashboard: React.FC = ({ -
+
End User