diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-08-11 13:21:29 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-08-17 18:56:38 +0200 |
commit | 9df5212a40f5a5011755f987eaf9b63652ef6848 (patch) | |
tree | 989390d43581b6c93c3b6981c5de089635e35f3d /apps/files/src/components/FileEntry.vue | |
parent | 0f68d08b140a69c2385b42bf7bc194a1e0129de5 (diff) | |
download | nextcloud-server-9df5212a40f5a5011755f987eaf9b63652ef6848.tar.gz nextcloud-server-9df5212a40f5a5011755f987eaf9b63652ef6848.zip |
perf(files): reuse vnode with unique key
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 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/src/components/FileEntry.vue b/apps/files/src/components/FileEntry.vue index c271a6965d7..98b4dfca07c 100644 --- a/apps/files/src/components/FileEntry.vue +++ b/apps/files/src/components/FileEntry.vue @@ -21,7 +21,7 @@ --> <template> - <Fragment> + <tr :class="{'list__row--active': active}" class="list__row"> <span v-if="source.attributes.failed" class="files-list__row--failed" /> <td class="files-list__row-checkbox"> @@ -151,7 +151,7 @@ :render="column.render" :source="source" /> </td> - </Fragment> + </tr> </template> <script lang='ts'> @@ -496,6 +496,7 @@ export default Vue.extend({ source() { this.resetState() this.debounceIfNotCached() + logger.debug('FileEntry source changed', { source: this.source }) }, /** |