Skip to content
Merged
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
12 changes: 6 additions & 6 deletions apps/dashboard/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1009,14 +1009,14 @@ function ProjectFilterChip({
className="flex cursor-pointer items-start justify-between gap-3 rounded-xl border border-slate-200 px-3 py-2 text-sm hover:border-slate-300 hover:bg-slate-50"
key={project.projectId}
>
<div className="min-w-0">
<div className="flex flex-wrap items-center gap-2">
<div className="font-medium text-slate-800">
{project.projectName}
</div>
<div className="min-w-0 space-y-1.5">
<div className="font-medium text-slate-800">
{project.projectName}
</div>
<div>
<AgentStatusIndicator project={project} />
</div>
<div className="mt-1 text-xs text-slate-500">
<div className="text-xs text-slate-500">
{project.projectProvider} · {project.projectSlug}
</div>
</div>
Expand Down
Loading