Skip to content

Commit ab1c426

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 8598f8b commit ab1c426

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/files/src/components/FilesListTableHeader.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@
2828
</th>
2929

3030
<!-- Actions -->
31-
<th class="files-list__row-actions" />
31+
<th class="files-list__row-actions">
32+
<span class="hidden-visually">
33+
{{ t('files', 'Actions') }}
34+
</span>
35+
</th>
3236

3337
<!-- Mime -->
3438
<th

0 commit comments

Comments
 (0)