diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-28 12:28:07 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-06 14:49:32 +0200 |
commit | 7215a9ae9c5803c20aa81fbfb227ad1546863620 (patch) | |
tree | 147f58293cfb886d711a07bf41b4045230e6da74 /apps/files | |
parent | 2b251999a288d59242b912b6fc5634e655ddf5ad (diff) | |
download | nextcloud-server-7215a9ae9c5803c20aa81fbfb227ad1546863620.tar.gz nextcloud-server-7215a9ae9c5803c20aa81fbfb227ad1546863620.zip |
fix(files): breadcrumbs accessibility title
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/components/BreadCrumbs.vue | 5 |
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), } }) }, |