Skip to content

Commit 82e61d9

Browse files
authored
Merge pull request #47538 from nextcloud/backport/47500/stable29
[stable29] fix(files): fix list gap at bottom
2 parents 6c73b11 + 235c44c commit 82e61d9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/files/src/components/VirtualList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export default Vue.extend({
204204
return {
205205
paddingTop: `${Math.floor(this.startIndex / this.columnCount) * this.itemHeight}px`,
206206
paddingBottom: isOverScrolled ? 0 : `${hiddenAfterItems * this.itemHeight}px`,
207-
minHeight: `${this.totalRowCount * this.itemHeight + this.beforeHeight}px`,
207+
minHeight: `${this.totalRowCount * this.itemHeight}px`,
208208
}
209209
},
210210
},

dist/files-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)