feat: enhance approvals panel with board labels and improved empty state display

This commit is contained in:
Abhimanyu Saharan
2026-02-08 01:39:13 +05:30
parent e612b6e41c
commit 8422b0ca01
4 changed files with 330 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import {
Activity,
BarChart3,
Bot,
CheckCircle2,
Folder,
LayoutGrid,
Network,
@@ -102,6 +103,18 @@ export function DashboardSidebar() {
<LayoutGrid className="h-4 w-4" />
Boards
</Link>
<Link
href="/approvals"
className={cn(
"flex items-center gap-3 rounded-lg px-3 py-2.5 text-slate-700 transition",
pathname.startsWith("/approvals")
? "bg-blue-100 text-blue-800 font-medium"
: "hover:bg-slate-100",
)}
>
<CheckCircle2 className="h-4 w-4" />
Approvals
</Link>
<Link
href="/activity"
className={cn(