fix: resolve interception.model badge size (#22104)

This commit is contained in:
Jake Howell
2026-02-15 13:30:54 +11:00
committed by GitHub
parent 6ed10c05af
commit 0822cbdafe
@@ -197,15 +197,15 @@ export const RequestLogsRow: FC<RequestLogsRowProps> = ({ interception }) => {
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
<div className="w-full min-w-0 overflow-hidden">
<Badge className="gap-1.5 w-full">
<div className="min-w-0 overflow-hidden">
<Badge className="gap-1.5 max-w-full">
<div className="flex-shrink-0 flex items-center">
<AIBridgeModelIcon
model={interception.model}
className="size-icon-xs"
/>
</div>
<span className="truncate min-w-0 w-full">
<span className="truncate min-w-0">
{interception.model}
</span>
</Badge>