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
6 changes: 6 additions & 0 deletions .server-changes/task-landing-title-truncate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
area: webapp
type: fix
---

Truncate long task names in the task landing page side menu so they no longer push the Test button off the edge.
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ function AgentDetailSidebar({

return (
<div className="grid h-full grid-rows-[auto_1fr] overflow-hidden bg-background-bright">
<div className="flex items-center gap-2 border-b border-grid-dimmed py-2 pl-3 pr-2">
<div className="flex min-w-0 items-center gap-2 border-b border-grid-dimmed py-2 pl-3 pr-2">
<Header2 className="flex min-w-0 flex-1 items-center gap-1.5">
<CubeSparkleIcon className="size-4.5 shrink-0 text-agents" />
<span className="truncate">{agent.slug}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function TaskDetailSidebar({

return (
<div className="grid h-full grid-rows-[auto_1fr] overflow-hidden bg-background-bright">
<div className="flex items-center gap-2 border-b border-grid-dimmed py-2 pl-3 pr-2">
<div className="flex min-w-0 items-center gap-2 border-b border-grid-dimmed py-2 pl-3 pr-2">
<Header2 className="flex min-w-0 flex-1 items-center gap-1.5">
<TaskIcon className="size-4.5 shrink-0 text-tasks" />
<span className="truncate">{task.slug}</span>
Expand Down