diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/src/js/components/helpers/VirtualScroll.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/components/helpers/VirtualScroll.js b/web/src/js/components/helpers/VirtualScroll.js index 5d4cf796..d9b31003 100644 --- a/web/src/js/components/helpers/VirtualScroll.js +++ b/web/src/js/components/helpers/VirtualScroll.js @@ -57,7 +57,7 @@ export function calcVScroll(opts) { start = Math.max(0, Math.floor(viewportTop / rowHeight) - 1) & ~1; end = Math.min( itemCount, - start + Math.ceil(viewportHeight / rowHeight) + 1 + start + Math.ceil(viewportHeight / rowHeight) + 2 ); // When a large trunk of elements is removed from the button, start may be far off the viewport. |