From 3ff2b25ea08e9b35f70fb6a9861a85a40450bb9b Mon Sep 17 00:00:00 2001 From: "Grigorii K. Shartsev" Date: Mon, 20 Nov 2023 11:54:39 +0100 Subject: [PATCH] fix(files): make file list item link focusable Signed-off-by: Grigorii K. Shartsev --- apps/files/src/components/FileEntry/FileEntryName.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/src/components/FileEntry/FileEntryName.vue b/apps/files/src/components/FileEntry/FileEntryName.vue index e5cd00f10d4..2c7cdc19376 100644 --- a/apps/files/src/components/FileEntry/FileEntryName.vue +++ b/apps/files/src/components/FileEntry/FileEntryName.vue @@ -151,6 +151,7 @@ export default Vue.extend({ return { title: displayName, role: 'button', + tabindex: '0', } } @@ -159,6 +160,7 @@ export default Vue.extend({ download: this.source.basename, href: this.source.source, title: t('files', 'Download file {name}', { name: this.displayName }), + tabindex: '0', } } @@ -329,7 +331,6 @@ export default Vue.extend({ } }, - t, }, }) -- 2.39.5