Skip to content

Commit

Permalink
wip: Refactor collections based components #917
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Sep 16, 2024
1 parent 4556add commit 2b7d4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/client/components/collection/KScrollDown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const refresh = _.debounce(() => {
else {
const ratio = clamp(qScrollUtils.getVerticalScrollPosition(targetElement) / diff, 0, 1)
const percent = Math.round(ratio * 10000) / 10000
isVisible.value = percent < 1
isVisible.value = percent < 0.99
}
logger.trace(`[KDK] (KScrollDown) Refreshed with visibility: ${isVisible.value}`)
}, 100)
Expand Down

0 comments on commit 2b7d4bc

Please sign in to comment.