diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 88fb49c..1c58f5a 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -20,7 +20,7 @@ const activeView = computed(() => { }) const routePaths: Record = { - Dashboard: '/dashboard', Memory: '/memory', Docs: '/docs', Team: '/team', Security: '/security', + Dashboard: '/dashboard', Memory: '/memory', Docs: '/docs', Security: '/security', Projects: '/projects', 'Task Board': '/tasks', Incidents: '/incidents', Calendar: '/calendar', Agents: '/agents', Models: '/models', Activity: '/activity', 'Mobile Chat': '/chat', Settings: '/settings', } @@ -31,7 +31,7 @@ const navigate = (label: string) => { } const mobileNavOpen = ref(false) -const standaloneViews = computed(() => ['Dashboard', 'Settings', 'ProjectDetail', 'Memory', 'Docs', 'Team', 'Security', 'Incidents', 'Calendar', 'AgentDetail', 'Agents'].includes(activeView.value)) +const standaloneViews = computed(() => ['Dashboard', 'Settings', 'ProjectDetail', 'Memory', 'Docs', 'Security', 'Incidents', 'Calendar', 'AgentDetail', 'Agents'].includes(activeView.value)) onMounted(() => { if (auth.isAuthenticated) store.refresh() diff --git a/frontend/src/components/dashboard/TeamNetwork.vue b/frontend/src/components/dashboard/TeamNetwork.vue index adfdd2a..cc0f876 100644 --- a/frontend/src/components/dashboard/TeamNetwork.vue +++ b/frontend/src/components/dashboard/TeamNetwork.vue @@ -1,5 +1,5 @@