mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-03 11:10:23 +02:00
fix(issues): blur sticky agent live card (#2170)
* fix(issues): blur sticky agent live card * fix(issues): drop inner live-card blur * fix(issues): match sticky live-card radius
This commit is contained in:
@@ -220,7 +220,7 @@ export function AgentLiveCard({ issueId }: AgentLiveCardProps) {
|
||||
return (
|
||||
<>
|
||||
{/* Primary agent — sticky at the top of the activity area */}
|
||||
<div className="mt-4 sticky top-4 z-10">
|
||||
<div className="mt-4 sticky top-4 z-10 rounded-lg bg-background/80 supports-[backdrop-filter]:bg-background/55 backdrop-blur-md">
|
||||
<SingleAgentLiveCard
|
||||
task={firstEntry.task}
|
||||
items={firstEntry.items}
|
||||
@@ -283,7 +283,7 @@ function SingleAgentLiveCard({ task, items, issueId, agentName }: SingleAgentLiv
|
||||
const toolCount = items.filter((i) => i.type === "tool_use").length;
|
||||
|
||||
return (
|
||||
<div className="rounded-lg border border-info/20 bg-info/5 backdrop-blur-sm">
|
||||
<div className="rounded-lg border border-info/20 bg-info/5">
|
||||
<div className="flex items-center gap-2 px-3 py-2 text-muted-foreground">
|
||||
{task.agent_id ? (
|
||||
<ActorAvatar actorType="agent" actorId={task.agent_id} size={20} enableHoverCard showStatusDot />
|
||||
|
||||
Reference in New Issue
Block a user