Skip to content

Commit

Permalink
fix(files): fix list gap at bottom
Browse files Browse the repository at this point in the history
Signed-off-by: Elizabeth Danzberger <[email protected]>
  • Loading branch information
elzody committed Aug 26, 2024
1 parent 21b997f commit 200a64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/src/components/VirtualList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
}
},
},
Expand Down

0 comments on commit 200a64c

Please sign in to comment.