fix: resolve course/class fields, surname i18n, optional nationalId, auto class end date, login styling, and mobile sidebar navigation

This commit is contained in:
2026-08-21 15:03:28 +03:30
parent b1c3dd6218
commit 86f1f9bab0
13 changed files with 348 additions and 117 deletions
+10
View File
@@ -15,6 +15,14 @@ export const useUiStore = defineStore('ui', () => {
isMobileSidebarOpen.value = !isMobileSidebarOpen.value;
}
function closeMobileSidebar() {
isMobileSidebarOpen.value = false;
}
function openMobileSidebar() {
isMobileSidebarOpen.value = true;
}
function setBreadcrumbs(items) {
breadcrumbs.value = items;
}
@@ -25,6 +33,8 @@ export const useUiStore = defineStore('ui', () => {
breadcrumbs,
toggleSidebar,
toggleMobileSidebar,
closeMobileSidebar,
openMobileSidebar,
setBreadcrumbs
};
});