Skip to content

Commit 2ed16c0

Browse files
committed
fix(files): fix list gap at bottom
Signed-off-by: Elizabeth Danzberger <[email protected]> Signed-off-by: nextcloud-command <[email protected]>
1 parent 4ea8417 commit 2ed16c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/files/src/components/VirtualList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export default Vue.extend({
216216
return {
217217
paddingTop: `${Math.floor(this.startIndex / this.columnCount) * this.itemHeight}px`,
218218
paddingBottom: isOverScrolled ? 0 : `${hiddenAfterItems * this.itemHeight}px`,
219-
minHeight: `${this.totalRowCount * this.itemHeight + this.beforeHeight}px`,
219+
minHeight: `${this.totalRowCount * this.itemHeight}px`,
220220
}
221221
},
222222
},

0 commit comments

Comments
 (0)