mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(files): add missing table header for actions column
- resolves https://github.com/nextcloud/server/issues/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>
This commit is contained in:
parent
a8720f8265
commit
d7e4096afe
1 changed files with 5 additions and 1 deletions
|
|
@ -28,7 +28,11 @@
|
|||
</th>
|
||||
|
||||
<!-- Actions -->
|
||||
<th class="files-list__row-actions" />
|
||||
<th class="files-list__row-actions">
|
||||
<span class="hidden-visually">
|
||||
{{ t('files', 'Actions') }}
|
||||
</span>
|
||||
</th>
|
||||
|
||||
<!-- Mime -->
|
||||
<th
|
||||
|
|
|
|||
Loading…
Reference in a new issue