#6776 fix: Virtual scroller: step prop in delay mode breaks the component

closes #6776
pull/6862/head
uros 2024-11-25 20:53:54 +01:00
parent 999bb5066c
commit ea211d63ec
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ export default {
return Math.floor(((first ?? this.first) + this.d_numToleratedItems * 4) / (this.step || 1)); return Math.floor(((first ?? this.first) + this.d_numToleratedItems * 4) / (this.step || 1));
}, },
isPageChanged(first) { isPageChanged(first) {
return this.step ? this.page !== this.getPageByFirst(first ?? this.first) : true; return this.step && !this.lazy ? this.page !== this.getPageByFirst(first ?? this.first) : true;
}, },
setContentEl(el) { setContentEl(el) {
this.content = el || this.content || findSingle(this.element, '[data-pc-section="content"]'); this.content = el || this.content || findSingle(this.element, '[data-pc-section="content"]');