diff options
Diffstat (limited to 'apps/files/src/components')
-rw-r--r-- | apps/files/src/components/BreadCrumbs.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/src/components/BreadCrumbs.vue b/apps/files/src/components/BreadCrumbs.vue index f50a4d14fd8..88b976f93da 100644 --- a/apps/files/src/components/BreadCrumbs.vue +++ b/apps/files/src/components/BreadCrumbs.vue @@ -30,6 +30,7 @@ v-bind="section" dir="auto" :to="section.to" + :icon-text="true" :title="titleForSection(index, section)" :aria-description="ariaForSection(section)" @click.native="onClick(section.to)"> @@ -119,7 +120,7 @@ export default defineComponent({ }, getDirDisplayName(path: string): string { if (path === '/') { - return t('files', 'Home') + return this.$navigation?.active?.name || t('files', 'Home') } const fileId: number | undefined = this.getFileIdFromPath(path) |