diff --git a/frontend/src/components/layout/AppSidebar.vue b/frontend/src/components/layout/AppSidebar.vue index 7a3feb9..2469274 100644 --- a/frontend/src/components/layout/AppSidebar.vue +++ b/frontend/src/components/layout/AppSidebar.vue @@ -14,7 +14,7 @@ type AppRole = 'student' | 'teacher' | 'admin' const navItems: NavItem[] = [ { label: 'Главная', icon: 'home', to: '/', roles: ['student'] }, { label: 'Каталог', icon: 'books', to: '/catalog', roles: ['student'] }, - { label: 'Мои лекции', icon: 'clipboard-list', to: '/my-lectures', roles: ['student'] }, + { label: 'Мои записи', icon: 'clipboard-list', to: '/my-lectures', roles: ['student'] }, { label: 'Достижения', icon: 'trophy', to: '/achievements', roles: ['student'] }, { label: 'Уведомления', icon: 'bell', to: '/notifications', roles: ['student'] }, { label: 'Профиль', icon: 'user', to: '/profile', roles: ['student'] }, diff --git a/frontend/src/components/layout/AppTopbar.vue b/frontend/src/components/layout/AppTopbar.vue index c8905bc..9e3105b 100644 --- a/frontend/src/components/layout/AppTopbar.vue +++ b/frontend/src/components/layout/AppTopbar.vue @@ -23,7 +23,6 @@ function openProfile() {