fix: refs #7353 load on scroll end 80% zoom
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-10-18 10:08:46 +02:00
parent c42c811444
commit 0c2d9e6ec6
1 changed files with 2 additions and 1 deletions

View File

@ -325,7 +325,8 @@ function handleOnDataSaved(_) {
function handleScroll() {
const tMiddle = tableRef.value.$el.querySelector('.q-table__middle');
const isAtBottom = tMiddle.scrollHeight - tMiddle.scrollTop === tMiddle.clientHeight;
const { scrollHeight, scrollTop, clientHeight } = tMiddle;
const isAtBottom = Math.abs(scrollHeight - scrollTop - clientHeight) <= 40;
if (isAtBottom) CrudModelRef.value.vnPaginateRef.paginate();
}
</script>