diff --git a/ui/litellm-dashboard/src/components/view_key_table.tsx b/ui/litellm-dashboard/src/components/view_key_table.tsx index 0595e31fd..474a308e9 100644 --- a/ui/litellm-dashboard/src/components/view_key_table.tsx +++ b/ui/litellm-dashboard/src/components/view_key_table.tsx @@ -802,6 +802,7 @@ const ViewKeyTable: React.FC = ({ Key Alias Secret Key + Created Expires Spend (USD) Budget (USD) @@ -843,10 +844,19 @@ const ViewKeyTable: React.FC = ({ {item.key_name} + + {item.created_at != null ? ( +
+

{new Date(item.created_at).toLocaleDateString()}

+
+ ) : ( +

Not available

+ )} +
{item.expires != null ? (
-

{new Date(item.expires).toLocaleString()}

+

{new Date(item.expires).toLocaleDateString()}

) : (

Never