diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-10-15 15:37:12 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-10-17 12:03:12 +0200 |
commit | 77fdef108194cff1cfb302d8ea129e22832be099 (patch) | |
tree | 6010b70b1cd4750fee5aafbedd970740136bfc4c /apps/files/src/components/FileEntry/FileEntryActions.vue | |
parent | 116c396f0e947c765ce6d512c16c037eb960f31e (diff) | |
download | nextcloud-server-77fdef108194cff1cfb302d8ea129e22832be099.tar.gz nextcloud-server-77fdef108194cff1cfb302d8ea129e22832be099.zip |
perf(files): optimize virtual scroller computation
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntry/FileEntryActions.vue')
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryActions.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue index 040b59066ec..bcb4abef10f 100644 --- a/apps/files/src/components/FileEntry/FileEntryActions.vue +++ b/apps/files/src/components/FileEntry/FileEntryActions.vue @@ -20,7 +20,8 @@ - --> <template> - <td class="files-list__row-actions" + <td v-show="visible" + class="files-list__row-actions" data-cy-files-list-row-actions> <!-- Render actions --> <CustomElementRender v-for="action in enabledRenderActions" |