aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorElizabeth Danzberger <lizzy7128@tutanota.de>2024-08-26 10:05:35 -0400
committerElizabeth Danzberger <lizzy7128@tutanota.de>2024-08-27 15:34:31 -0400
commit9c075a727b8bd210d57b7fce63c7c17ef4b6e1ef (patch)
treee1924b94f40c923ddce6d7463f6ada650fb27052 /apps/files
parent9129731db65522e274e0933698e2f0fa836b306e (diff)
downloadnextcloud-server-9c075a727b8bd210d57b7fce63c7c17ef4b6e1ef.tar.gz
nextcloud-server-9c075a727b8bd210d57b7fce63c7c17ef4b6e1ef.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/files')
-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 320ca4a6ce3..c0794ffc7a7 100644
--- a/apps/files/src/components/VirtualList.vue
+++ b/apps/files/src/components/VirtualList.vue
@@ -204,7 +204,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`,
}
},
},