fix(editor): Change Home label to Overview (#11736)

This commit is contained in:
Csaba Tuncsik
2024-11-14 13:59:08 +01:00
committed by GitHub
parent 8a0ad0f910
commit 1a783606b4
5 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ const headerIcon = computed(() => {
const projectName = computed(() => {
if (!projectsStore.currentProject) {
return i18n.baseText('projects.menu.home');
return i18n.baseText('projects.menu.overview');
} else if (projectsStore.currentProject.type === ProjectTypes.Personal) {
return i18n.baseText('projects.menu.personal');
} else {