We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcfd530 commit 775c89fCopy full SHA for 775c89f
1 file changed
apps/files/src/components/BreadCrumbs.vue
@@ -30,6 +30,7 @@
30
v-bind="section"
31
dir="auto"
32
:to="section.to"
33
+ :icon-text="true"
34
:title="titleForSection(index, section)"
35
:aria-description="ariaForSection(section)"
36
@click.native="onClick(section.to)">
@@ -119,7 +120,7 @@ export default defineComponent({
119
120
},
121
getDirDisplayName(path: string): string {
122
if (path === '/') {
- return t('files', 'Home')
123
+ return this.$navigation.active.name || t('files', 'Home')
124
}
125
126
const fileId: number | undefined = this.getFileIdFromPath(path)
0 commit comments