diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-11-30 11:12:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 11:12:19 +0100 |
commit | 63b10842420d140030e39451459682ee0f62ac04 (patch) | |
tree | 9c7e65fe242fe6fb74cdfb4f9c0f89379d0c5d29 /apps/files | |
parent | bdc7c64ec7afdb57ec3033f2b35f55747a9dbe31 (diff) | |
parent | bcc41df1aefebe8cd86faabe38129156a948a92c (diff) | |
download | nextcloud-server-63b10842420d140030e39451459682ee0f62ac04.tar.gz nextcloud-server-63b10842420d140030e39451459682ee0f62ac04.zip |
Merge pull request #41808 from nextcloud/accessibility/breadcrumbs
accessibility fix - changed the dir attribute to have valid value
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/components/BreadCrumbs.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/src/components/BreadCrumbs.vue b/apps/files/src/components/BreadCrumbs.vue index bed8f104e96..5a7fb4491fc 100644 --- a/apps/files/src/components/BreadCrumbs.vue +++ b/apps/files/src/components/BreadCrumbs.vue @@ -6,6 +6,8 @@ :aria-label="ariaLabel(section)" :title="ariaLabel(section)" v-bind="section" + dir="auto" + :to="section.to" @click.native="onClick(section.to)"> <template v-if="index === 0" #icon> <Home :size="20" /> |