diff --git a/ui/src/components/ActiveAgentsPanel.tsx b/ui/src/components/ActiveAgentsPanel.tsx index 2c382a9e..d3dcd1d3 100644 --- a/ui/src/components/ActiveAgentsPanel.tsx +++ b/ui/src/components/ActiveAgentsPanel.tsx @@ -434,7 +434,7 @@ function AgentRunCard({
+
{value}
diff --git a/ui/src/components/SidebarAgents.tsx b/ui/src/components/SidebarAgents.tsx
index 9d36377f..b94ccfe4 100644
--- a/ui/src/components/SidebarAgents.tsx
+++ b/ui/src/components/SidebarAgents.tsx
@@ -127,7 +127,7 @@ export function SidebarAgents() {
{runCount > 0 && (
-
+
diff --git a/ui/src/components/SidebarNavItem.tsx b/ui/src/components/SidebarNavItem.tsx
index 6d3f4995..18ba03f1 100644
--- a/ui/src/components/SidebarNavItem.tsx
+++ b/ui/src/components/SidebarNavItem.tsx
@@ -53,7 +53,7 @@ export function SidebarNavItem({
{liveCount != null && liveCount > 0 && (
-
+
{liveCount} live
diff --git a/ui/src/index.css b/ui/src/index.css
index aab6536a..adcc1e9b 100644
--- a/ui/src/index.css
+++ b/ui/src/index.css
@@ -123,7 +123,7 @@
-webkit-tap-highlight-color: color-mix(in oklab, var(--foreground) 20%, transparent);
}
body {
- @apply bg-background text-foreground;
+ @apply bg-background text-foreground antialiased;
height: 100%;
overflow: hidden;
}
@@ -528,8 +528,8 @@
}
.paperclip-markdown img {
- border: 1px solid var(--border);
border-radius: calc(var(--radius) + 2px);
+ box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--foreground) 10%, transparent);
}
.paperclip-markdown table {
diff --git a/ui/src/pages/AgentDetail.tsx b/ui/src/pages/AgentDetail.tsx
index b5571255..77923019 100644
--- a/ui/src/pages/AgentDetail.tsx
+++ b/ui/src/pages/AgentDetail.tsx
@@ -511,7 +511,7 @@ export function AgentDetail() {
className="sm:hidden flex items-center gap-1.5 px-2 py-0.5 rounded-full bg-blue-500/10 hover:bg-blue-500/20 transition-colors no-underline"
>
-
+
Live
@@ -713,7 +713,7 @@ function LatestRunCard({ runs, agentId }: { runs: HeartbeatRun[]; agentId: strin
+
{formatCents(data.summary.spendCents)}{" "}
{data.summary.budgetCents > 0
@@ -192,7 +192,7 @@ export function Costs() {
{isLive && (
-
+
)}
@@ -857,7 +857,7 @@ function CostsSection({
{formatDate(run.createdAt)}
{run.id.slice(0, 8)}
- {formatTokens(Number(u.input_tokens ?? 0))}
- {formatTokens(Number(u.output_tokens ?? 0))}
-
+ {formatTokens(Number(u.input_tokens ?? 0))}
+ {formatTokens(Number(u.output_tokens ?? 0))}
+
{(u.cost_usd || u.total_cost_usd)
? `$${Number(u.cost_usd ?? u.total_cost_usd ?? 0).toFixed(4)}`
: "-"
@@ -1163,7 +1163,7 @@ function RunListItem({ run, isSelected, agentId }: { run: HeartbeatRun; isSelect
)}
{(metrics.totalTokens > 0 || metrics.cost > 0) && (
-