Skip to content
Open
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
18 changes: 12 additions & 6 deletions ui/src/pages/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,12 @@ export function Dashboard() {
{/* Recent Activity */}
{recentActivity.length > 0 && (
<div className="min-w-0">
<h3 className="text-sm font-semibold text-muted-foreground uppercase tracking-wide mb-3">
Recent Activity
</h3>
<div className="flex items-center justify-between gap-2 mb-3">
<h3 className="text-sm font-semibold text-muted-foreground uppercase tracking-wide">
Recent Activity
</h3>
<Link to="/activity" className="text-xs text-muted-foreground hover:text-foreground transition-colors">View all</Link>
</div>
<div className="border border-border divide-y divide-border overflow-hidden">
{recentActivity.map((event) => (
<ActivityRow
Expand All @@ -329,9 +332,12 @@ export function Dashboard() {

{/* Recent Tasks */}
<div className="min-w-0">
<h3 className="text-sm font-semibold text-muted-foreground uppercase tracking-wide mb-3">
Recent Tasks
</h3>
<div className="flex items-center justify-between gap-2 mb-3">
<h3 className="text-sm font-semibold text-muted-foreground uppercase tracking-wide">
Recent Tasks
</h3>
<Link to="/issues" className="text-xs text-muted-foreground hover:text-foreground transition-colors">View all</Link>
</div>
{recentIssues.length === 0 ? (
<div className="border border-border p-4">
<p className="text-sm text-muted-foreground">No tasks yet.</p>
Expand Down
Loading