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
a49ee462dc
commit
3df9b6039c
1 changed files with 5 additions and 1 deletions
|
|
@ -25,7 +25,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 v-if="isMimeAvailable"
|
||||
|
|
|
|||
Loading…
Reference in a new issue