Skip to content

Commit

Permalink
fix: overflow LLMApiKeyList baseUrl (#2372)
Browse files Browse the repository at this point in the history
  • Loading branch information
hassiebp committed Jun 19, 2024
1 parent 65b4429 commit 33155de
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions web/src/features/public-api/components/LLMApiKeyList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ export function LlmApiKeyList(props: { projectId: string }) {
These keys are used to power the Langfuse playground and evaluations
feature and will incur costs based on usage with your key provider.
</p>
<Card className="mb-4">
<Card className="mb-4 overflow-auto">
<Table>
<TableHeader>
<TableRow>
<TableHead className="hidden text-primary md:table-cell">
Created
</TableHead>
<TableHead className="hidden text-primary md:table-cell">
<TableHead className="text-primary md:table-cell">
Provider
</TableHead>
<TableHead className="hidden text-primary md:table-cell">
Adapter
</TableHead>
<TableHead className="hidden text-primary md:table-cell">
<TableHead className="text-primary md:table-cell">
Base URL
</TableHead>
<TableHead className="text-primary">Secret Key</TableHead>
Expand All @@ -81,8 +81,10 @@ export function LlmApiKeyList(props: { projectId: string }) {
{apiKey.createdAt.toLocaleDateString()}
</TableCell>
<TableCell className="font-mono">{apiKey.provider}</TableCell>
<TableCell className="font-mono">{apiKey.adapter}</TableCell>
<TableCell className="font-mono">
<TableCell className="hidden font-mono">
{apiKey.adapter}
</TableCell>
<TableCell className="max-w-md overflow-auto font-mono">
{apiKey.baseURL ?? "default"}
</TableCell>
<TableCell className="font-mono">
Expand Down

0 comments on commit 33155de

Please sign in to comment.