aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorElizabeth Danzberger <lizzy7128@tutanota.de>2024-08-26 10:05:35 -0400
committernextcloud-command <nextcloud-command@users.noreply.github.com>2024-08-27 08:53:57 +0000
commit99221f2a42b0946f932811907b1ec5966e440129 (patch)
tree2cf353c1b09d4186557b2473ce65d21334d8d4eb /apps
parentead3f66379f35e42c2d5433eeca911b61a9cd968 (diff)
downloadnextcloud-server-99221f2a42b0946f932811907b1ec5966e440129.tar.gz
nextcloud-server-99221f2a42b0946f932811907b1ec5966e440129.zip
fix(files): fix list gap at bottom
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/src/components/VirtualList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/VirtualList.vue b/apps/files/src/components/VirtualList.vue
index 859aba6c834..4c047a76a4e 100644
--- a/apps/files/src/components/VirtualList.vue
+++ b/apps/files/src/components/VirtualList.vue
@@ -216,7 +216,7 @@ export default Vue.extend({
return {
paddingTop: `${Math.floor(this.startIndex / this.columnCount) * this.itemHeight}px`,
paddingBottom: isOverScrolled ? 0 : `${hiddenAfterItems * this.itemHeight}px`,
- minHeight: `${this.totalRowCount * this.itemHeight + this.beforeHeight}px`,
+ minHeight: `${this.totalRowCount * this.itemHeight}px`,
}
},
},