]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(files): fix list gap at bottom
authorElizabeth Danzberger <lizzy7128@tutanota.de>
Mon, 26 Aug 2024 14:05:35 +0000 (10:05 -0400)
committerElizabeth Danzberger <lizzy7128@tutanota.de>
Tue, 27 Aug 2024 16:41:19 +0000 (12:41 -0400)
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
apps/files/src/components/VirtualList.vue

index 859aba6c8347bed1828fb2a54e05daa7887eda75..4c047a76a4e47747a8b066a8818186a2e0506ec5 100644 (file)
@@ -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`,
                        }
                },
        },