From 2ed16c020d3ecf4f0350e2b0e1e7f946611e7711 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 859aba6c8347b..4c047a76a4e47 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`, } }, },