From dbba2be2770debfda28a6111b6cfbab9c970ac40 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Tue, 12 May 2026 14:30:43 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BB=20?= =?UTF-8?q?=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D1=80=D0=BE=D0=BB=D0=B8=20=D0=BF=D0=BE=D0=BB=D1=8C?= =?UTF-8?q?=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8F=20=D0=B2=20?= =?UTF-8?q?=D1=82=D0=BE=D0=BF=D0=B1=D0=B0=D1=80=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/layout/AppTopbar.vue | 21 -------------------- 1 file changed, 21 deletions(-) diff --git a/frontend/src/components/layout/AppTopbar.vue b/frontend/src/components/layout/AppTopbar.vue index 5fd8491..c8905bc 100644 --- a/frontend/src/components/layout/AppTopbar.vue +++ b/frontend/src/components/layout/AppTopbar.vue @@ -13,12 +13,6 @@ const userStore = useUserStore() const router = useRouter() const searchQuery = ref('') -const roleLabels: Record = { - student: 'Студент', - teacher: 'Преподаватель', - admin: 'Администратор', -} - const unreadCount = computed(() => userStore.unreadCount()) function openProfile() { @@ -40,10 +34,6 @@ function openProfile() {
- - {{ roleLabels[auth.user.activeRole] }} - -