Fix infinity scroll does not load [SCI-10691][10697]

This commit is contained in:
Andrej 2024-05-16 11:29:26 +02:00
parent 4573fb6e92
commit 5386cb1155

View file

@ -88,7 +88,7 @@ export default {
handleScroll() {
if (this.loading || !this.selected) return;
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight - 50) {
if (this.results.length < this.total) {
this.loadData();
}