Browse Source
Merge pull request #47500 from nextcloud/fix/file-list-footer-gap
pull/47541/head
John Molakvoæ
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
4 deletions
-
apps/files/src/components/VirtualList.vue
-
dist/files-main.js
-
dist/files-main.js.map
|
|
|
@ -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`, |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|