Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/pages/admin-brokers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export default function AdminBrokers() {
<TableCell className="font-medium">{token.name}</TableCell>
<TableCell>
{token.isRevoked
? <Badge className="bg-red-700">Revoked</Badge>
? <Badge variant="destructive">Revoked</Badge>
: <Badge className="bg-blue-500">Active</Badge>}
</TableCell>
<TableCell className="text-xs text-muted-foreground">{fmt(token.lastUsedAt)}</TableCell>
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/console-eval-agents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ export default function ConsoleEvalAgents() {
{token.isRevoked ? (
<Badge variant="destructive">Revoked</Badge>
) : (
<Badge variant="outline">Active</Badge>
<Badge className="bg-blue-500">Active</Badge>
)}
</TableCell>
<TableCell className="text-muted-foreground">
Expand Down
Loading