diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 5999a9e..1b0ade5 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -31,9 +31,7 @@ export default function Sidebar({ user, onLogout }: Props) { const links = user ? [ { to: '/', icon: '📊', label: 'Dashboard' }, - { to: '/issues', icon: '📋', label: 'Issues' }, { to: '/projects', icon: '📁', label: 'Projects' }, - { to: '/milestones', icon: '🏁', label: 'Milestones' }, { to: '/notifications', icon: '🔔', label: 'Notifications' + (unreadCount > 0 ? ' (' + unreadCount + ')' : '') }, { to: '/monitor', icon: '📡', label: 'Monitor' }, ] : [ diff --git a/src/pages/ProjectsPage.tsx b/src/pages/ProjectsPage.tsx index 7374b66..6139645 100644 --- a/src/pages/ProjectsPage.tsx +++ b/src/pages/ProjectsPage.tsx @@ -50,7 +50,7 @@ export default function ProjectsPage() {
{p.description || 'No description'}