Skip to content

Commit

Permalink
Merge pull request #47538 from nextcloud/backport/47500/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(files): fix list gap at bottom
  • Loading branch information
elzody authored Aug 27, 2024
2 parents 6c73b11 + 235c44c commit 82e61d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/files/src/components/VirtualList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
}
},
},
Expand Down
4 changes: 2 additions & 2 deletions dist/files-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files-main.js.map

Large diffs are not rendered by default.

0 comments on commit 82e61d9

Please sign in to comment.