aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/src')
-rw-r--r--apps/files/src/components/BreadCrumbs.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/src/components/BreadCrumbs.vue b/apps/files/src/components/BreadCrumbs.vue
index ebbd91ab641..dcedeab0172 100644
--- a/apps/files/src/components/BreadCrumbs.vue
+++ b/apps/files/src/components/BreadCrumbs.vue
@@ -4,7 +4,7 @@
<NcBreadcrumb v-for="(section, index) in sections"
:key="section.dir"
:aria-label="ariaLabel(section)"
- :native-title="ariaLabel(section)"
+ :title="ariaLabel(section)"
v-bind="section"
@click.native="onClick(section.to)">
<template v-if="index === 0" #icon>
@@ -50,8 +50,9 @@ export default Vue.extend({
const to = { ...this.$route, query: { dir } }
return {
dir,
+ exact: true,
+ name: basename(dir),
to,
- title: basename(dir),
}
})
},