diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-24 17:17:29 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-06 14:49:31 +0200 |
commit | 0f717d408f73e02a0c0555f242936b75845b3a91 (patch) | |
tree | 5a20630f0920f7d788b749883611afafd8febe8e /apps/files/src/components/FileEntry.vue | |
parent | 0e764f753a3d47bba946dc3f64cef9536ac98d43 (diff) | |
download | nextcloud-server-0f717d408f73e02a0c0555f242936b75845b3a91.tar.gz nextcloud-server-0f717d408f73e02a0c0555f242936b75845b3a91.zip |
feat(accessibility): add files table caption and summary
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntry.vue')
-rw-r--r-- | apps/files/src/components/FileEntry.vue | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/files/src/components/FileEntry.vue b/apps/files/src/components/FileEntry.vue index fcada72e4ce..4dfe3da0e4c 100644 --- a/apps/files/src/components/FileEntry.vue +++ b/apps/files/src/components/FileEntry.vue @@ -57,12 +57,9 @@ <!-- Actions --> <td :class="`files-list__row-actions-${uniqueId}`" class="files-list__row-actions"> <!-- Inline actions --> - <template v-if="false" v-for="action in enabledInlineActions"> - <CustomElementRender v-if="false" - :key="action.id" - :element="action.renderInline(source, currentView)" /> - <NcButton v-else - :key="action.id" + <template v-for="action in enabledInlineActions"> + <!-- TODO: implement CustomElementRender --> + <NcButton :key="action.id" type="tertiary" @click="onActionClick(action)"> <template #icon> |