We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
debounce
1 parent c02e23c commit e3cc3f4Copy full SHA for e3cc3f4
apps/settings/src/components/Users/VirtualList.vue
@@ -121,7 +121,7 @@ export default Vue.extend({
121
this.tableHeight = root?.clientHeight ?? 0
122
logger.debug('VirtualList resizeObserver updated')
123
this.onScroll()
124
- }, 100, false))
+ }, 100))
125
126
this.resizeObserver.observe(root)
127
this.resizeObserver.observe(tfoot)
apps/user_status/src/UserStatus.vue
@@ -112,7 +112,7 @@ export default {
112
if (wasAway) {
113
this._backgroundHeartbeat()
114
}
115
- }, 1000 * 2, true)
+ }, 1000 * 2, { immediate: true })
116
window.addEventListener('mousemove', this.mouseMoveListener, {
117
capture: true,
118
passive: true,
0 commit comments