From c84cd0415e288598566f3fb13989f525a4ee4017 Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Mon, 26 Aug 2024 10:05:35 -0400 Subject: [PATCH] fix(files): fix list gap at bottom Signed-off-by: Elizabeth Danzberger Signed-off-by: nextcloud-command --- apps/files/src/components/VirtualList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`, } }, }, -- 2.39.5