Skip to content

Commit 3df9b60

Browse files
committed
fix(files): add missing table header for actions column
- resolves #59333 Every column needs an header with some label for accessibility, so screen reader know which column they are in currently. This adds the missing header (but hides it visually so only for SR). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent a49ee46 commit 3df9b60

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

apps/files/src/components/FilesListTableHeader.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
</th>
2626

2727
<!-- Actions -->
28-
<th class="files-list__row-actions" />
28+
<th class="files-list__row-actions">
29+
<span class="hidden-visually">
30+
{{ t('files', 'Actions') }}
31+
</span>
32+
</th>
2933

3034
<!-- Mime -->
3135
<th v-if="isMimeAvailable"

0 commit comments

Comments
 (0)