diff options
Diffstat (limited to 'apps/files/src/components/VirtualList.vue')
-rw-r--r-- | apps/files/src/components/VirtualList.vue | 2 |
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`, } }, }, |